home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / XAMPP 1.4.14 / xampp-win32-1.4.14-installer.exe / xampp / mysql / scripts / mysqlaccess < prev    next >
Text File  |  2005-04-01  |  111KB  |  3,237 lines

  1. #!/usr/bin/perl
  2. # ****************************
  3. package MySQLaccess;
  4. #use strict;
  5. use File::Temp qw(tempfile tmpnam);
  6. use Fcntl;
  7.  
  8. BEGIN {
  9.     # ****************************
  10.     # static information...
  11.     $VERSION     = "2.06, 20 Dec 2000";
  12.     $0           =~ m%/([^/]+)$%o;
  13.     $script      = $1;
  14.         $script      = 'MySQLAccess' unless $script;
  15.     $script_conf = "$script.conf";
  16.     $script_log  = $ENV{'HOME'}."/$script.log";
  17.  
  18.     # ****************************
  19.     # information on MySQL
  20.     $MYSQL     = '/usr/local/bin/mysql';    # path to mysql executable
  21.     $SERVER    = '3.21';
  22.     $MYSQL_OPT = ' --batch --unbuffered';
  23.     $ACCESS_DB = 'mysql';         # name of DB with grant-tables
  24.     $ACCESS_H  = 'host';         # 
  25.     $ACCESS_U  = 'user';             # 
  26.     $ACCESS_D  = 'db';               #
  27.     # Add/Edit privileges
  28.     $ACCESS_H_TMP = 'host_tmp';      
  29.     $ACCESS_U_TMP = 'user_tmp';      
  30.     $ACCESS_D_TMP = 'db_tmp';        
  31.     $ACCESS_H_BCK = 'host_backup';   
  32.     $ACCESS_U_BCK = 'user_backup';   
  33.     $ACCESS_D_BCK = 'db_backup';     
  34.         $DIFF      = '/usr/bin/diff'; 
  35.         $MYSQLDUMP = '/usr/local/bin/mysqldump';
  36.                                          #path to mysqldump executable
  37.  
  38.         $MYSQLADMIN= 'http://foobar.com/MySQLadmin';
  39.                                          #URL of CGI for manipulating
  40.                                          #the temporary grant-tables
  41. }
  42.  
  43. END {
  44.     unlink $MYSQL_CNF if defined $MYSQL_CNF and not $DEBUG;
  45. }
  46.  
  47. $INFO = <<"_INFO";
  48. --------------------------------------------------------------------------
  49.    mysqlaccess (Version $VERSION)
  50.    ~~~~~~~~~~~
  51.    Copyright (C) 1997,1998 Yves.Carlier\@rug.ac.be
  52.                            University of Ghent (RUG), Belgium
  53.                            Administratieve Informatieverwerking (AIV)
  54.  
  55.    report the access-privileges for a USER from a HOST to a DB
  56.  
  57.    Many thanks go to <monty\@mysql.com> and <psmith\@BayNetworks.COM>
  58.    for their suggestions, debugging and patches. 
  59.  
  60.    use `$script -?' to get more information on available options.
  61.  
  62.    From version 2.0x, $script can also be used through a WEB-browser
  63.    if it is ran as a CGI-script.  (See the release-notes)
  64.  
  65. --------------------------------------------------------------------------
  66. _INFO
  67.  
  68. $OPTIONS = <<_OPTIONS;
  69.  
  70. Usage: $script [host [user [db]]] OPTIONS
  71.  
  72.   -?, --help           display this helpscreen and exit
  73.   -v, --version        print information on the program `$script'
  74.  
  75.   -u, --user=#         username for logging in to the db
  76.   -p, --password=#     validate password for user
  77.   -h, --host=#         name or IP-number of the host
  78.   -d, --db=#           name of the database
  79.  
  80.   -U, --superuser=#    connect as superuser
  81.   -P, --spassword=#    password for superuser
  82.   -H, --rhost=#        remote MySQL-server to connect to
  83.       --old_server     connect to old MySQL-server (before v3.21) which 
  84.                        does not yet know how to handle full where clauses.
  85.  
  86.   -b, --brief          single-line tabular report
  87.   -t, --table          report in table-format
  88.  
  89.   --relnotes           print release-notes
  90.   --plan               print suggestions/ideas for future releases
  91.   --howto              some examples of how to run `$script'
  92.   --debug=N            enter debuglevel N (0..3)
  93.  
  94.   --copy               reload temporary grant-tables from original ones
  95.   --preview            show differences in privileges after making
  96.                        changes in (temporary) grant-tables
  97.   --commit             copy grant-rules from temporary tables to grant-tables
  98.                        (!don't forget to do an mysqladmin reload)
  99.   --rollback           undo the last changes to the grant-tables.
  100.  
  101.   Note:
  102.     + At least the user and the db must be given (even with wildcards)
  103.     + If no host is given, `localhost' is assumed
  104.     + Wilcards (*,?,%,_) are allowed for host, user and db, but be sure 
  105.       to escape them from your shell!! (ie type \\* or '*')
  106. _OPTIONS
  107.  
  108. $RELEASE = <<'_RELEASE';
  109.  
  110. Release Notes:
  111. -------------
  112.   0.1-beta1: internal
  113.   - first trial.
  114.  
  115.   0.1-beta2: (1997-02-27)
  116.   - complete rewrite of the granting-rules, based on the documentation
  117.     found in de FAQ.
  118.   - IP-number and name for a host are equiv.
  119.  
  120.   0.1-beta3: (1997-03-10)
  121.   - more information
  122.   - 'localhost' and the name/ip of the local machine are now equiv.
  123.  
  124.   0.1-beta4: (1997-03-11)
  125.   - inform the user if he has not enough priv. to read the mysql db
  126.  
  127.   1.0-beta1: (1997-03-12)
  128.   suggestions by Monty:
  129.   - connect as superuser with superpassword.
  130.   - mysqlaccess could also notice if all tables are empty. This means
  131.     that all user have full access!
  132.   - It would be nice if one could optionally start mysqlaccess without
  133.     any options just the arguments 'user db' or 'host user db', where
  134.     host is 'localhost' if one uses only two arguments.
  135.  
  136.   1.0-beta2: (1997-03-14)
  137.   - bugfix: translation to reg.expr of \_ and \%.
  138.   - bugfix: error in matching regular expression and string given
  139.             by user which resulted in
  140.             'test_123' being matched with 'test'
  141.  
  142.   1.0-beta3: (1997-03-14)
  143.   - bugfix: the user-field should not be treated as a sql-regexpr,
  144.             but as a plain string.
  145.   - bugfix: the host-table should not be used if the host isn't empty in db
  146.                                           or  if the host isn't emty in user
  147.             (Monty)
  148.  
  149.   1.0-beta4: (1997-03-14)
  150.   - bugfix: in an expression "$i = $j or $k", the '=' binds tighter than the or
  151.             which results in problems...
  152.             (by Monty)
  153.   - running mysqlaccess with "perl -w" gives less warnings...   ;-)
  154.  
  155.   1.0-beta5: (1997-04-04)
  156.   - bugfix: The table sorting was only being applied to the "user" table; all
  157.             the tables need to be sorted.  Rewrote the sort algorithm, and
  158.             the table walk algorithm (no temp file anymore), and various
  159.             other cleanups.  I believe the access calculation is 100% correct.
  160.             (by Paul D. Smith <psmith\@baynetworks.com>)
  161.   - Allow the debug level to be set on the cmd line with --debug=N.
  162.             (by Paul D. Smith <psmith\@baynetworks.com>)
  163.   - More -w cleanups; should be totally -w-clean.
  164.             (by Paul D. Smith <psmith\@baynetworks.com>)
  165.  
  166.   1.1-beta1: (1997-04-xx) 
  167.   1.1-beta2: (1997-04-11)
  168.   - new options:
  169.              --all_users : report access-rights for all possible users
  170.              --all_dbs   : report access-rights for all possible dbs
  171.              --all_hosts : report access-rights for all possible hosts
  172.              --brief     : as brief as possible, don't mention notes,warnings and rules
  173.              --password  : validate password for user 
  174.   - layout: long messages are wrapped on the report.
  175.   - functionality:
  176.             more descriptive notes and warnings
  177.             wildcards (*,?) are allowed in the user,host and db options
  178.             setting xxxx=* is equiv to using option --all_xxxx
  179.             note: make sure you escape your wildcards, so they don't get
  180.                   interpreted by the shell.  use \* or '*'
  181.   - bugfix: Fieldnames which should be skipped on the output can now have
  182.             a first capital letter.
  183.   - bugfix: any option with a '.' (eg ip-number) was interpreted as
  184.             a wildcard-expression.
  185.   - bugfix: When no entry was found in the db-table, the default accessrights are
  186.             N, instead of the faulty Y in a previous version.
  187.  
  188.   1.1-beta-3  : (1997-04-xx)
  189.   1.1-beta-4  : (1997-04-xx)
  190.   1.1-beta-5  : (1997-04-xx)
  191.   1.1         : (1997-04-28)
  192.   - new options:
  193.             --rhost     : name of mysql-server to connect to
  194.             --plan      : print suggestions/ideas for future releases
  195.             --relnotes  : display release-notes
  196.             --howto     : display examples on how to use mysqlaccess
  197.             --brief     : single-line tabular output
  198.   - functionality/bugfix:
  199.     *      removed options --all_users,--all_dbs,--all_hosts, which 
  200.            were redundant with the wildcard-expressions for the corresponding
  201.            options. They made the processing of the commandline too painful 
  202.            and confusing ;-)
  203.            (suggested by psmith)
  204.     *      redefined the option --brief, which now gives a single-line 
  205.            tabular output
  206.     *      Now we check if the right version of the mysql-client is used,
  207.            since we might use an option not yet implemented in an
  208.            older version (--unbuffered, since 3.0.18)
  209.            Also the error-messages the mysql-client reports are 
  210.            better interpreted ;-)  
  211.     *      Wildcards can now be given following the SQL-expression 
  212.            (%,_) and the Regular-expression (*,?) syntax.
  213.   - speed: we now open a bidirectional pipe to the mysql-client, and keep 
  214.            it open throughout the whole run. Queries are written to,
  215.            and the answers read from the pipe.
  216.            (suggested by monty)
  217.   - bugfixes:
  218.     *      the Rules were not properly reset over iterations 
  219.     *      when in different tables the field-names were not identical, 
  220.            eg. Select_priv and select_priv, they were considered as 
  221.            definitions of 2 different access-rights.
  222.     *      the IP-number of a host with a name containing wildcards should
  223.            not be searched for in Name2IP and IP2Name.
  224.     *      various other small things, pointed out by <monty> and <psmith>
  225.  
  226.   1.2         : (1997-05-13)
  227.   - bugfix:
  228.     * Fixed bug in acl with anonymous user:  Now if one gets accepted by the
  229.       user table as a empty user name, the user name is set to '' when 
  230.       checking against the 'db' and 'host' tables. (Bug fixed in MySQL3.20.19)
  231.  
  232.   1.2-1       : (1997-xx-xx)
  233.   - bugfix:
  234.     * hashes should  be initialized with () instead of {} <psmith>
  235.     * "my" variable $name masks earlier declaration in same scope,
  236.       using perl 5.004 <????>
  237.  
  238.   1.2-2       : (1997-06-10)
  239.     
  240.   2.0p1-3     : (1997-10-xx)
  241.   - new
  242.     * packages
  243.     * log-file for debug-output : /tmp/mysqlaccess.log
  244.     * default values are read from a configuration file $script.conf
  245.       first this file is looked for in the current directory; if not
  246.       found it is looked for in /etc/
  247.       Note that when default-values are given, these can't get overriden
  248.       by empty (blanc) values!
  249.     * CGI-BIN version with HTML and forms interface.  Simply place the
  250.       script in an ScriptAliased directory, make the configuration file
  251.       available in the that directory or in /etc, and point your browser
  252.       to the right URL. 
  253.     * copy the grant-rules to temporary tables, where you are safe to
  254.       play with them.
  255.     * preview changes in privileges after changing grant-rules,
  256.       before taking them into production
  257.     * copy the new grant-rules from the temporary tables back to the
  258.       grant-tables.
  259.     * Undo all changes made in the grant-tables (1-level undo).
  260.   -new options:
  261.     * --table   : as opposite of the --brief option.
  262.     * --copy    : (re)load temporary grant-tables from original ones.
  263.     * --preview : preview changes in privileges after changing
  264.                   some or more entries in the grant-tables.
  265.     * --commit  : copy grant-rules from temporary tables to grant-tables
  266.                   (!don't forget to do an mysqladmin reload)
  267.     * --rollback: undo the last changes to the grant-tables.
  268.  
  269.   - bugfix:
  270.     * if the table db is empty, mysqlaccess freezed 
  271.       (by X Zhu <X.Zhu@Bradford.ac.uk>)
  272.  
  273.   2.0         : (1997-10-09)
  274.   - fixed some "-w" warnings.
  275.   - complain when certain programs and paths can't be found.
  276.  
  277.   2.01        : (1997-12-12)
  278.   - bugfix:
  279.     * rules for db-table where not calculated and reported correctly.
  280.   2.02        : (1998-01-xx)
  281.   - bugfix:
  282.     * Privileges of the user-table were not AND-ed properly with the
  283.       other privileges. (reported by monty)
  284.   - new option:
  285.     * --old_server: mysqlaccess will now use a full where clause when
  286.                     retrieving information from the MySQL-server.  If
  287.                     you are connecting to an old server (before v3.21)
  288.                     then use the option --old_server.
  289.   2.03         : (1998-02-27)
  290.   - bugfix:
  291.     * in Host::MatchTemplate: incorrect match if host-field was left empty.
  292.  
  293.   2.04-alpha1  : (2000-02-11)
  294.   Closes vulnerability due to former implementation requiring passwords
  295.   to be passed on the command line.
  296.   - functionality
  297.     Option values for --password -p -spassword -P  may now be omitted from
  298.     command line, in which case the values will be prompted for.
  299.       (fix supplied by Steve Harvey <sgh@vex.net>)
  300.  
  301.    2.05: (2000-02-17)   Monty
  302.    Moved the log file from /tmp to ~
  303.  
  304.    2.06:  Don't print '+++USING FULL WHERE CLAUSE+++'
  305.  
  306. _RELEASE
  307.  
  308. $TODO = <<_TODO;
  309.  
  310.  Plans:
  311.  -----
  312.   -a full where clause is use now.  How can we handle older servers?
  313.   -add some more functionality for DNS.
  314.   -select the warnings more carefuly.
  315.   >>  I think that the warnings should either be enhanced to _really_
  316.   >>  understand and report real problems accurately, or restricted to
  317.   >>  only printing things that it knows with 100% certainty. <psmith)
  318.   >>  Why do I have both '%' and 'any_other_host' in there?  Isn't that
  319.   >>  the same thing?  I think it's because I have an actual host '%' in
  320.   >>  one of my tables.  Probably the script should catch that and not
  321.   >>  duplicate output. <psmith>
  322.  
  323. _TODO
  324.  
  325. # From the FAQ: the Grant-algorithm
  326. # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  327. # The host table is mainly to maintain a list of "secure" servers.
  328. # At TCX hosts contain a list of all machines on local network. These are granted
  329. # all privileges.
  330. # Technically the user grant is calculated by:
  331. #
  332. #    1.First sort all entries by host by putting host without wildcards first,
  333. #      after this host with wildcards and entries with host = ".
  334. #      Under each host sort user by the same criterias.
  335. #    2.Get grant for user from the "db" table.
  336. #    3.If hostname is "empty" for the found entry, AND the privileges with
  337. #      the privileges for the host in "host" table.
  338. #      (Remove all which is not "Y" in both)
  339. #    4.OR (add) the privileges for the user from the "user" table.
  340. #     (add all privileges which is "Y" in "user")
  341. #
  342. #    When matching, use the first found match.
  343. #
  344. # -----------------------------------------------------------------------------------
  345.  
  346. $HOWTO = <<_HOWTO;
  347.  
  348. Examples of how to call $script:
  349. ~~~~~~~~
  350. 1)Calling $script with 2 arguments:
  351.  
  352.   \$ $script root mysql
  353.      ->report rights of user root logged on at the local host in db mysql
  354.  
  355.   Access-rights
  356.   for USER 'root', from HOST 'localhost', to DB 'mysql'
  357.           +-----------------+---+ +-----------------+---+
  358.           | select_priv     | Y | | drop_priv       | Y |
  359.           | insert_priv     | Y | | reload_priv     | Y |
  360.           | update_priv     | Y | | shutdown_priv   | Y |
  361.           | delete_priv     | Y | | process_priv    | Y |
  362.           | create_priv     | Y | | file_priv       | Y |
  363.           +-----------------+---+ +-----------------+---+
  364.   BEWARE:  Everybody can access your DB as user 'root'
  365.         :  WITHOUT supplying a password.  Be very careful about it!!
  366.  
  367.   The following rules are used:
  368.    db    : 'No matching rule'
  369.    host  : 'Not processed: host-field is not empty in db-table.'
  370.    user  : 'localhost','root','','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y'
  371.  
  372. 2)Calling $script with 3 arguments:
  373.  
  374.   \$ $script foo.bar nobody Foo 
  375.      ->report rights of user root logged in at machine foobar to db Foo
  376.  
  377.   Access-rights
  378.   for USER 'nobody', from HOST 'foo.bar', to DB 'Foo'
  379.           +-----------------+---+ +-----------------+---+
  380.           | select_priv     | Y | | drop_priv       | N |
  381.           | insert_priv     | Y | | reload_priv     | N |
  382.           | update_priv     | Y | | shutdown_priv   | N |
  383.           | delete_priv     | Y | | process_priv    | N |
  384.           | create_priv     | N | | file_priv       | N |
  385.           +-----------------+---+ +-----------------+---+
  386.   BEWARE:  Everybody can access your DB as user 'nobody'
  387.         :  WITHOUT supplying a password.  Be very careful about it!!
  388.  
  389.   The following rules are used:
  390.    db    : 'foo.bar','Foo','nobody','Y','Y','Y','N','N','N'
  391.    host  : 'Not processed: host-field is not empty in db-table.'
  392.    user  : 'foo.bar','nobody','','N','N','N','Y','N','N','N','N','N','N'
  393.  
  394. 3)Using wildcards:
  395.  
  396.   \$ $script  \\* nobody Foo --brief
  397.      ->report access-rights of user nobody from all machines to db Foo,
  398.        and use a matrix-report.
  399.  
  400.   Sel  Ins  Upd  Del  Crea Drop Reld Shut Proc File Host,User,DB        
  401.   ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- --------------------
  402.    Y    Y    Y    Y    N    N    N    N    N    N   localhost,nobody,Foo
  403.    N    N    N    N    N    N    N    N    N    N   %,nobody,Foo  
  404.    N    N    N    N    N    N    N    N    N    N   any_other_host,nobody,Foo
  405.  
  406. _HOWTO
  407.  
  408.  
  409. # +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ #
  410. #                       START OF THE PROGRAM                            #
  411. # +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ #
  412.  
  413. use Getopt::Long;
  414. use Sys::Hostname;
  415. use IPC::Open3;
  416.  
  417.  
  418. # ****************************
  419. # debugging flag
  420. # can be set to 0,1,2,3
  421. # a higher value gives more info
  422. # ! this can also be set on the command-line
  423.     $DEBUG   = 0;
  424.  
  425. # ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++>8
  426. #  Normaly nothing should be changed beneeth this line
  427.  
  428.  
  429. # ****************************
  430. # no caching on STDOUT
  431.     $|=1;
  432.  
  433.     $MYSQL_CNF = tmpnam();
  434.     %MYSQL_CNF = (client    => { },
  435.                       mysql     => { },
  436.                       mysqldump => { },
  437.     );
  438.  
  439.  
  440.  
  441. $NEW_USER = 'ANY_NEW_USER';
  442. $NEW_DB   = 'ANY_NEW_DB'  ;
  443.  
  444.  
  445. # %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% #
  446. #  mysqlaccess:                                              #
  447. #  ~~~~~~~~~~~                                               #
  448. #  Lets get to it,                                           #
  449. #  and start the program by processing the parameters        #
  450. # %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% #
  451.  
  452. ($CMD,$CGI) = GetMode();
  453.  
  454. # ****************************
  455. # the copyright message should
  456. # always be printed (once)
  457. MySQLaccess::Report::Print_Header();
  458.  
  459. # *****************************
  460. # Read configuration-file
  461.   MySQLaccess::Debug::Print(1, "Reading configuration file...");
  462.   if (-f "./$script_conf") {
  463.      require "./$script_conf";
  464.   }
  465.   elsif (-f "/etc/$script_conf") {
  466.      require "/etc/$script_conf";
  467.   }
  468.  
  469. # ****************************
  470. # Read in all parameters
  471. if ($MySQLaccess::CMD) { #command-line version
  472.     # ----------------------------
  473.     # Get options from commandline
  474.     $Getopt::Long::ignorecase=0; #case sensitive options
  475.     if ( grep(/\-\?/,@ARGV) ) { MySQLaccess::Report::Print_Usage(); exit 0; }
  476.     GetOptions("help"          => \$Param{'help'}
  477.               ,"host|h=s"      => \$Param{'host'}
  478.               ,"user|u=s"      => \$Param{'user'}
  479.               ,"password|p:s"  => \$Param{'password'}
  480.               ,"db|d=s"        => \$Param{'db'}
  481.               ,"superuser|U=s" => \$Param{'superuser'}
  482.               ,"spassword|P:s" => \$Param{'spassword'}
  483.               ,"rhost|H=s"     => \$Param{'rhost'}
  484.                   ,"old_server"    => \$Param{'old_server'}
  485.               ,"debug=i"       => \$Param{'DEBUG'}
  486.               ,"brief|b"       => \$Param{'brief'}
  487.               ,"table|t"       => \$Param{'table'}
  488.               ,"relnotes"      => \$Param{'relnotes'}
  489.               ,"plan"          => \$Param{'plan'}
  490.               ,"howto"         => \$Param{'howto'}
  491.               ,"version|v"     => \$Param{'version'}
  492.                   ,"preview"       => \$Param{'preview'}
  493.                   ,"copy"          => \$Param{'copy'}
  494.                   ,"commit"        => \$Param{'commit'}
  495.                   ,'rollback'      => \$Param{'rollback'}
  496.           );
  497.  
  498.         # -----------------------------
  499.         # set DEBUG
  500.         $DEBUG = $Param{'DEBUG'} if ($Param{'DEBUG'}>=$DEBUG);
  501.  
  502.     # -----------------------------
  503.     # check for things which aren't
  504.     # declared as options:
  505.     # 2 arguments: (user,db) -> ('localhost','user','db')
  506.     if ($#ARGV == 1) {
  507.        MySQLaccess::Debug::Print(2,"$script called with 2 arguments:");
  508.        $Param{'host'} = $Param{'host'} || 'localhost'; 
  509.        $Param{'user'} = $ARGV[0] || $Param{'user'};
  510.            $Param{'db'}   = $ARGV[1] || $Param{'db'}; 
  511.     }
  512.     # 3 arguments: (host,user,db)
  513.     if ($#ARGV == 2) {
  514.        MySQLaccess::Debug::Print(2,"$script called with 3 arguments:");
  515.        $Param{'host'} = $ARGV[0] || $Param{'host'};
  516.        $Param{'user'} = $ARGV[1] || $Param{'user'};
  517.        $Param{'db'}   = $ARGV[2] || $Param{'db'};
  518.     }
  519.  
  520.     # -------------------------------------
  521.     # prompt for user password if requested
  522.     if ( defined($Param{'password'}) && length($Param{'password'}) == 0 ) {
  523.            $Param{'password'} = PromptPass(
  524.                             "Password for MySQL user $Param{'user'}: ");
  525.     }
  526. }
  527. if ($MySQLaccess::CGI) { #CGI-version
  528.     require CGI;
  529.      $Q = new CGI;
  530.     $Param{'help'} = $Q->param('help') ;
  531.     $Param{'host'} = $Q->param('host') || $Q->param('h') || $Param{'host'};
  532.     $Param{'user'} = $Q->param('user') || $Q->param('u') || $Param{'user'};
  533.     $Param{'db'}   = $Q->param('db')   || $Q->param('d') || $Param{'db'};
  534.     $Param{'password'}  = $Q->param('password')  || $Q->param('p') || $Param{'password'};
  535.     $Param{'superuser'} = $Q->param('superuser') || $Q->param('U') || $Param{'superuser'};
  536.     $Param{'spassword'} = $Q->param('spassword') || $Q->param('P') || $Param{'spassword'};
  537.     $Param{'rhost'}     = $Q->param('rhost')     || $Q->param('H') || $Param{'rhost'};
  538.     $Param{'old_server'}= $Q->param('old_server')|| $Param{'old_server'};
  539.     $Param{'debug'}     = $Q->param('debug')     || $Param{'debug'};
  540.     $Param{'brief'}     = $Q->param('brief')     || $Param{'brief'}; 
  541.     $Param{'table'}     = $Q->param('table')     || $Param{'table'}; 
  542.     $Param{'relnotes'}  = $Q->param('relnotes');
  543.     $Param{'plan'}      = $Q->param('plan');
  544.     $Param{'howto'}     = $Q->param('howto'); 
  545.     $Param{'version'}   = $Q->param('version') ? $Q->param('version') : $Q->param('v');
  546.     $Param{'edit'}      = $Q->param('edit'); 
  547.     $Param{'preview'}   = $Q->param('preview'); 
  548.     $Param{'copy'}      = $Q->param('copy'); 
  549.     $Param{'commit'}    = $Q->param('commit'); 
  550.     $Param{'rollback'}  = $Q->param('rollback'); 
  551.         # -----------------------------
  552.         # set DEBUG
  553.         $DEBUG = $Q->param('debug') if ($Q->param('debug')>=$DEBUG);
  554. }
  555.  
  556. # ----------------------
  557. # brief and table-format 
  558. # exclude each-other
  559. # table-format is prefered
  560. if (defined($Param{'table'})) { undef($Param{'brief'}); }
  561. if (defined($Param{'preview'}) or
  562.     defined($Param{'copy'}) or
  563.     defined($Param{'commit'}) or
  564.     defined($Param{'rollback'}) ) { $Param{'edit'}='on'; }
  565.  
  566.  
  567. # ----------------------
  568. # if no host is given
  569. # assume we mean 'localhost'
  570. if (!defined($Param{'host'}))      { $Param{'host'}='localhost'; }
  571.  
  572. # ----------------------
  573. # perform some checks
  574. # -> eliminate 'broken pipe' error
  575. push(@MySQLaccess::Grant::Error,'not_found_mysql')     if !(-x $MYSQL);
  576. push(@MySQLaccess::Grant::Error,'not_found_diff')      if !(-x $DIFF);
  577. push(@MySQLaccess::Grant::Error,'not_found_mysqldump') if !(-x $MYSQLDUMP);
  578. if (@MySQLaccess::Grant::Error) {
  579.    MySQLaccess::Report::Print_Error_Messages() ;
  580.    exit 0;
  581. }
  582.  
  583. #-----------------------
  584. # get info/help if necc.
  585. $print_usage=1;
  586. if ( defined($Param{'version'}) ) {
  587.    MySQLaccess::Report::Print_Version();
  588.    $print_usage=0;
  589.    MySQLaccess::Report::Print_Footer();
  590.    MySQLaccess::DB::CloseConnection();
  591.    exit 0;
  592. #   exit 0;
  593. }
  594. if ( defined($Param{'relnotes'}) ) {
  595.    MySQLaccess::Report::Print_Relnotes();
  596.    $print_usage=0;
  597.    MySQLaccess::Report::Print_Footer();
  598.    MySQLaccess::DB::CloseConnection();
  599.    exit 0;
  600. #   exit 0;
  601. }
  602. if ( defined($Param{'plan'}) ) {
  603.    MySQLaccess::Report::Print_Plans();
  604.    $print_usage=0;
  605.    MySQLaccess::Report::Print_Footer();
  606.    MySQLaccess::DB::CloseConnection();
  607.    exit 0;
  608. #   exit 0;
  609. }
  610. if ( defined($Param{'howto'}) ) {
  611.    MySQLaccess::Report::Print_HowTo();
  612.    $print_usage=0;
  613.    MySQLaccess::Report::Print_Footer();
  614.    MySQLaccess::DB::CloseConnection();
  615.    exit 0;
  616. #   exit 0;
  617. }
  618.  
  619. # -----------------------------
  620. # generate a help-screen in CMD-mode
  621. # or a blanc form in CGI-mode 
  622. if ( defined($Param{'help'}) 
  623.      or !defined($Param{'user'}) 
  624.      or !defined($Param{'host'})
  625.      or !defined($Param{'db'}) 
  626.    ) {
  627.    push(@MySQLaccess::Grant::Error,'user_required') unless defined($Param{'user'});
  628.    push(@MySQLaccess::Grant::Error,'db_required') unless defined($Param{'db'});
  629.    push(@MySQLaccess::Grant::Error,'host_required') unless defined($Param{'host'});
  630.    MySQLaccess::Report::Print_Usage() if $print_usage;
  631.    exit 0;
  632. }
  633.  
  634.  
  635. # ----------------------------
  636. # get hostname and local-ip
  637. # for localhost
  638. $localhost = MySQLaccess::Host::LocalHost();
  639. $local_ip  = MySQLaccess::Host::Name2IP($localhost);
  640. $MySQLaccess::Host::localhost = MySQLaccess::Host::LocalHost();
  641. $MySQLaccess::Host::local_ip  = MySQLaccess::Host::Name2IP($localhost);
  642. MySQLaccess::Debug::Print(3, "localhost name=$localhost, ip=$local_ip");
  643.  
  644. #-----------------------------------
  645. # version of MySQL-server to connect
  646. # to determine use of full where clause
  647. $MySQLaccess::Host::SERVER = $Param{'old_server'} ? '3.20' : $SERVER;
  648.  
  649. #---------------------------------
  650. # create the config file for mysql and mysqldump
  651. # to avoid passing authentication info on the command line
  652. #
  653. MergeConfigFiles();
  654. die "Unsafe config file found: $unsafeConfig\n"  if $unsafeConfig;
  655. if (defined($Param{'superuser'})) {
  656.    $MYSQL_CNF{'mysql'}{'user'} = $Param{'superuser'};
  657.    $MYSQL_CNF{'mysqldump'}{'user'} = $Param{'superuser'};
  658. }
  659. if (defined($Param{'spassword'})) {
  660.    if ( $CMD && length($Param{'spassword'}) == 0 ) {
  661.       $Param{'spassword'} =
  662.            PromptPass("Password for MySQL superuser $Param{'superuser'}: ");
  663.    }
  664.    if ( length($Param{'spassword'}) > 0 ) {
  665.       $MYSQL_CNF{'mysql'}{'password'} = $Param{'spassword'};
  666.       $MYSQL_CNF{'mysqldump'}{'password'} = $Param{'spassword'};
  667.    }
  668. }
  669. WriteTempConfigFile();
  670.  
  671. #---------------------------------
  672. # Inform user if he has not enough
  673. # privileges to read the access-db
  674. if ( $nerror=MySQLaccess::DB::OpenConnection() ) {
  675.     MySQLaccess::Report::Print_Error_Access($nerror);
  676.     exit 0;
  677. }
  678.  
  679. # -----------------------
  680. # Read MySQL ACL-files
  681. if ($nerror=MySQLaccess::Grant::ReadTables()) {
  682.     MySQLaccess::Report::Print_Error_Access($nerror);
  683.     exit 0;
  684. };
  685. if ($Param{'edit'} and $nerror=MySQLaccess::Grant::ReadTables('tmp')) {
  686.     MySQLaccess::Report::Print_Error_Access($nerror);
  687.     exit 0;
  688. }
  689.  
  690. #---------------------------------
  691. # reload temporay grant-tables 
  692. # with data from original ones
  693. if ( defined($Param{'copy'}) ) {
  694.    $nerror=MySQLaccess::DB::LoadTmpTables();
  695.    if ($nerror) {
  696.       MySQLaccess::Report::Print_Error_Access($nerror);
  697.       exit 0;
  698.    }
  699.    my $msg = "The grant-rules are copied from the grant-tables to\n"
  700.            . "the temporary tables.";
  701.    MySQLaccess::Report::Print_Message([$msg]);
  702. #   MySQLaccess::Report::Print_Footer();
  703. #   MySQLaccess::DB::CloseConnection();
  704. #   exit 0;
  705. }
  706.  
  707.  
  708. #---------------------------------
  709. # preview result of changes in the 
  710. # grant-tables
  711. if ( defined($Param{'preview'}) ) {
  712.    $aref=MySQLaccess::Grant::Diff_Privileges();
  713.    MySQLaccess::Report::Print_Diff_ACL($aref);
  714. #   MySQLaccess::Report::Print_Footer();
  715. #   MySQLaccess::DB::CloseConnection();
  716. #   exit 0;
  717. }
  718.  
  719.  
  720. #---------------------------------
  721. # reload grant-tables 
  722. # with data from temporary tables
  723. if ( defined($Param{'commit'}) ) {
  724.    if ($nerror = MySQLaccess::DB::CommitGrantTables()) {
  725.       MySQLaccess::Report::Print_Error_Access($nerror);
  726.       exit 0;
  727.    }
  728.    my $msg = "The grant-rules have been copied from the temporary tables\n"
  729.            . "to the grant-tables.";
  730.    my $msg1= "Don't forget to do an 'mysqladmin reload' before these\n"
  731.            . "changes take effect.";
  732.    my $msg2= "A backup-version of your original grant-rules are saved in the\n"
  733.            . "backup-tables, so you can always perform a 1-level rollback.";
  734.    MySQLaccess::Report::Print_Message([$msg,$msg1,$msg2]);
  735. #   MySQLaccess::Report::Print_Footer();
  736. #   MySQLaccess::DB::CloseConnection();
  737. #   exit 0;
  738. }
  739.  
  740. #---------------------------------
  741. # restore previous grant-rules
  742. # with data from backup tables
  743. if ( defined($Param{'rollback'}) ) {
  744.    if ($nerror = MySQLaccess::DB::RollbackGrantTables()) {
  745.       MySQLaccess::Report::Print_Error_Access($nerror);
  746.       exit 0;
  747.    }
  748.    my $msg = "The old grant-rules have been copied back from the backup tables\n"
  749.            . "to the grant-tables.";
  750.    my $msg1= "Don't forget to do an 'mysqladmin reload' before these\n"
  751.            . "changes take effect.";
  752.    MySQLaccess::Report::Print_Message([$msg,$msg1]);
  753. #   MySQLaccess::Report::Print_Footer();
  754. #   MySQLaccess::DB::CloseConnection();
  755. #   exit 0;
  756. }
  757. #----------------------------------
  758. # show edit-taskbar
  759. if ( defined($Param{'edit'})) {
  760.    if ($MySQLaccess::CGI ) {
  761.    MySQLaccess::Report::Print_Edit();
  762.    $print_usage=0;
  763.    MySQLaccess::Report::Print_Footer();
  764.    MySQLaccess::DB::CloseConnection();
  765.    exit 0;
  766.    }
  767.    else {
  768.    MySQLaccess::Report::Print_Edit();
  769.    $print_usage=0;
  770.    MySQLaccess::Report::Print_Footer();
  771.    MySQLaccess::DB::CloseConnection();
  772.    exit 0;
  773.    }
  774. }
  775.  
  776.  
  777. # -----------------------------
  778. # Build list of users,dbs,hosts
  779. # to process...
  780. @all_dbs   = @{MySQLaccess::DB::Get_All_dbs($Param{'db'})};
  781. @all_users = @{MySQLaccess::DB::Get_All_users($Param{'user'})};
  782. @all_hosts = @{MySQLaccess::DB::Get_All_hosts($Param{'host'})};
  783. #if EDIT-mode
  784. #@all_dbs_tmp   = @{MySQLaccess::DB::Get_All_dbs($Param{'db'},'tmp')};
  785. #@all_users_tmp = @{MySQLaccess::DB::Get_All_users($Param{'user'},'tmp')};
  786. #@all_hosts_tmp = @{MySQLaccess::DB::Get_All_hosts($Param{'host'},'tmp')};
  787.  
  788. # -----------------------------
  789. # Report access-rights for each
  790. # tuple (host,user,db)
  791. #$headers=0;
  792. my %Access = ();
  793. foreach $host (@all_hosts) {
  794.   foreach $user (@all_users) {
  795.     foreach $db (@all_dbs) {
  796.       MySQLaccess::Grant::Initialize();
  797.       %Access = MySQLaccess::Grant::Get_Access_Rights($host,$user,$db);    
  798.       MySQLaccess::Report::Print_Access_rights($host,$user,$db,\%Access);
  799.     }
  800.   }
  801. }
  802.  
  803. # -----------------------------
  804. # End script
  805. MySQLaccess::Report::Print_Footer();
  806. MySQLaccess::DB::CloseConnection();
  807. exit 0;
  808.  
  809. #############################################################
  810. #  FUNCTIONS  #
  811. ###############
  812. sub GetMode {
  813.    my $cmd=0;
  814.    my $cgi=0;
  815.    if (defined($ENV{'HTTP_HOST'})) { $cmd=0; $cgi=1; }
  816.    else                            { $cmd=1; $cgi=0; } 
  817.    return ($cmd,$cgi);
  818. }
  819.  
  820. # ================================
  821. # sub PromptPass
  822. #  prompt tty for a password
  823. # ================================
  824. sub PromptPass {
  825.     my ($prompt) = @_;
  826.     my $password;
  827.     $ENV{PATH} = "/bin:/usr/bin";
  828.     $ENV{IFS} = " \t\n";
  829.     $ENV{SHELL} = "/bin/sh";
  830.     system "stty -echo";
  831.     print $prompt;
  832.     chomp($password = <STDIN>);
  833.     print "\n";
  834.     system "stty echo";
  835.     $password;
  836. }
  837.  
  838. # =================================
  839. # sub CheckUnsafeFile
  840. #  tell if a config file containing a password is unsafe
  841. # =================================
  842. sub CheckUnsafeFile {
  843.     my ($fname) = @_;
  844.     my ($dev, $ino, $mode, $nlink,
  845.         $uid, $gid, $rdev, $size,
  846.         $atime, $mtime, $ctime, $blksize, $blocks) = stat($fname);
  847.  
  848.     if ( $uid != $< ) {   # unsafe if owned by other than current user
  849.         return 1;
  850.     }
  851.     if ( $mode & 066 ) {  # unsafe if accessible by other
  852.         return 1;
  853.     }
  854.     $fname =~ s#/[^/]+$##;
  855.     if ( (length $fname) > 0 ) {
  856.         return CheckUnsafeDir($fname);
  857.     }
  858.     return 0;
  859. }
  860.  
  861. # =================================
  862. # sub CheckUnsafeDir
  863. #  tell if a directory is unsafe
  864. # =================================
  865. sub CheckUnsafeDir {
  866.     my ($fname) = @_;
  867.     my ($dev, $ino, $mode, $nlink,
  868.         $uid, $gid, $rdev, $size,
  869.         $atime, $mtime, $ctime, $blksize, $blocks) = stat($fname);
  870.  
  871.     # not owned by me or root
  872.     if ( ($uid != $<) && ($uid != 0) ) {
  873.         return 1;
  874.     }
  875.     if ( $mode & 022 ) {  # unsafe if writable by other
  876.         return 1  unless $mode & 01000;  # but sticky bit ok
  877.     }
  878.     $fname =~ s#/[^/]+$##;
  879.     if ( (length $fname) > 0 ) {
  880.         return CheckUnsafeDir($fname);
  881.     }
  882.     return 0;
  883. }
  884.  
  885. # =================================
  886. # sub MergeConfigFile
  887. #  merge data from .cnf file
  888. # =================================
  889. sub MergeConfigFile {
  890.     my ($fname) = @_;
  891.     my ($group, $item, $value);
  892.     if ( open CNF, $fname ) {
  893.          while (<CNF>) {
  894.              s/^\s+//;
  895.              next if /^[#;]/;
  896.              if ( /\[\s*(\w+)\s*]/ ) {
  897.                  $group = $1;
  898.                  $group =~ tr/A-Z/a-z/;
  899.                  if ( !exists $MYSQL_CNF{$group} ) {
  900.                      undef $group;
  901.                  }
  902.              } elsif ( defined $group ) {
  903.                  ($item, $value) = /((?:\w|-)+)\s*=\s*(\S+)/;
  904.                  # don't unquote backslashes as we just write it back out
  905.                  if ( defined $item ) {
  906.                      if ( $item =~ /^password$/ ) {
  907.                          if ( CheckUnsafeFile($fname) ) {
  908.                              $unsafeConfig = $fname;
  909.                          }
  910.                      }
  911.                      if ( $group eq 'client' ) {
  912.                          $MYSQL_CNF{'mysql'}{$item} = $value;
  913.                          $MYSQL_CNF{'mysqldump'}{$item} = $value;
  914.                      } else {
  915.                          $MYSQL_CNF{$group}{$item} = $value;
  916.                      }
  917.                  }
  918.              }
  919.          }
  920.          close(CNF);
  921.     }
  922. }
  923.  
  924. # =================================
  925. # sub MergeConfigFiles
  926. #  merge options from config files
  927. #  NOTE: really should do two separate merges for each
  928. #    client to exactly duplicate order of resulting argument lists
  929. # =================================
  930. sub MergeConfigFiles {
  931.     my ($name,$pass,$uid,$gid,$quota,$comment,$gcos,$dir,$shell) = getpwuid $<;
  932.     MergeConfigFile("/etc/my.cnf");
  933.     MergeConfigFile("$dir/.my.cnf");
  934. }
  935.  
  936. # =================================
  937. # sub WriteTempConfigFile
  938. #  write 
  939. # =================================
  940. sub WriteTempConfigFile {
  941.    sysopen CNFFILE, $MYSQL_CNF, O_RDWR|O_CREAT|O_EXCL, 0700
  942.       or die "sysopen $MYSQL_CNF: $!";
  943.    
  944.    # groups may be in any order, generic groups such as [client] assumed
  945.    # here to be empty
  946.    foreach $group (keys %MYSQL_CNF) {
  947.       print CNFFILE "[$group]\n";
  948.       foreach $item (keys %{$MYSQL_CNF{$group}}) {
  949.          if ( defined $MYSQL_CNF{$group}{$item} ) {
  950.             print CNFFILE "$item=$MYSQL_CNF{$group}{$item}\n";
  951.          } else {
  952.             print CNFFILE "$item\n";
  953.          }
  954.       }
  955.       print CNFFILE "\n";
  956.    }
  957.    close(CNFFILE);
  958. }
  959.  
  960. ######################################################################
  961. package MySQLaccess::DB;
  962. ###########
  963. BEGIN {
  964.     $DEBUG     = 2;
  965.     $DEBUG     = $MySQLaccess::DEBUG unless ($DEBUG);
  966.     # Error-messages from the MySQL client
  967.     %ACCESS_ERR= ('Access_denied'       => 'Access denied' 
  968.                  ,'Dbaccess_denied'     => 'Access to database denied'
  969.                  ,'Unrecognized_option' => 'unrecognized option' 
  970.                  ,'Unknown_table'       => "Can't find file:"
  971.                  ,'unknown_error'       => '^ERROR:'
  972.                  );
  973. }
  974. # ######################################
  975. #  Connecting to the MYSQL DB
  976. # ======================================
  977. # sub OpenConnection
  978. #  Open an connection to the mysql-db
  979. #  questions to MYSQL_Q
  980. #  answers from MYSQL_A
  981. # ======================================
  982. sub OpenConnection {
  983.     my $pid;
  984.     MySQLaccess::Debug::Print(2,"OpenConnection:");
  985.  
  986.     # check path to mysql-client executable
  987.     if (! -f $MySQLaccess::MYSQL) {
  988.        if ($MySQLaccess::CMD) { die "Could not find MySQL-client '$MySQLaccess::MYSQL'"; }
  989.        if ($MySQLaccess::CGI) { 
  990.           print "<center>\n<font color=Red>\n";
  991.           print "ERROR: Could not find MySQL-client '$MySQLaccess::MYSQL'";
  992.           print "</center>\n</font>\n";
  993.           exit 0;
  994.        }
  995.     }
  996.  
  997.     # path to mysql executable
  998.     my $connect = "$MySQLaccess::MYSQL --defaults-file=$MySQLaccess::MYSQL_CNF";
  999.     $connect .= " $MySQLaccess::MYSQL_OPT";
  1000.     # superuser, spassword transmitted via defaults-file
  1001.     if (defined($MySQLaccess::Param{'rhost'}))     { $connect .= " --host=$MySQLaccess::Param{'rhost'}"; }
  1002.     # other options??
  1003.  
  1004.     # grant-database
  1005.     $connect .= " $MySQLaccess::ACCESS_DB";
  1006.  
  1007.     # open connection (not using /bin/sh -c)
  1008.     MySQLaccess::Debug::Print(2,"Connecting to: $connect");
  1009.     $pid=IPC::Open3::open3(\*MYSQL_Q,\*MYSQL_A,"",split /\s+/,$connect);
  1010.     MySQLaccess::Debug::Print(2,"PID of open pipe: $pid");
  1011.     
  1012.     # check connection 
  1013.     print MYSQL_Q "select 'ok';\n";
  1014.     $answer = <MYSQL_A>; #answer from mysql
  1015.     MySQLaccess::Debug::Print(2,"Answer: $answer\n");
  1016.     foreach $nerror (sort(keys(%ACCESS_ERR))) {
  1017.       MySQLaccess::Debug::Print(3,"check answer for error $ACCESS_ERR{$nerror}");
  1018.       if (grep(/$ACCESS_ERR{$nerror}/i,$answer)) { 
  1019.          MySQLaccess::Debug::Print(2,"Answer contain error [$nerror]");
  1020.          return $nerror; 
  1021.       }
  1022.     }
  1023.  
  1024. if (0) {
  1025.     # check server-version 
  1026.     print MYSQL_Q "select 'ok';\n";
  1027.     $answer = <MYSQL_A>; #answer from mysql
  1028.     MySQLaccess::Debug::Print(2,"Answer: $answer\n");
  1029.     foreach $nerror (sort(keys(%ACCESS_ERR))) {
  1030.       MySQLaccess::Debug::Print(3,"check answer for error $ACCESS_ERR{$nerror}");
  1031.       if (grep(/$ACCESS_ERR{$nerror}/i,$answer)) { 
  1032.          MySQLaccess::Debug::Print(2,"Answer contain error [$nerror]");
  1033.          return $nerror; 
  1034.       }
  1035.     }
  1036. }
  1037.  
  1038.     my $skip=<MYSQL_A>; 
  1039.     return 0; 
  1040. }
  1041.  
  1042. # ======================================
  1043. # sub CloseConnection
  1044. #  Close the connection to the mysql-db
  1045. # ======================================
  1046. sub CloseConnection {
  1047.     close MYSQL_Q;
  1048.     close MYSQL_A;
  1049. }
  1050.  
  1051. # ===========================================================
  1052. # sub CreateTable($table)
  1053. #  Create temporary/backup table
  1054. # ===========================================================
  1055. sub CreateTable {
  1056.     my $pid;
  1057.     my ($table,$force) = @_;
  1058.     my %tables = ( $MySQLaccess::ACCESS_U_TMP => $MySQLaccess::ACCESS_U,
  1059.                    $MySQLaccess::ACCESS_H_TMP => $MySQLaccess::ACCESS_H,
  1060.                    $MySQLaccess::ACCESS_D_TMP => $MySQLaccess::ACCESS_D,
  1061.                    $MySQLaccess::ACCESS_U_BCK => $MySQLaccess::ACCESS_U,
  1062.                    $MySQLaccess::ACCESS_H_BCK => $MySQLaccess::ACCESS_H,
  1063.                    $MySQLaccess::ACCESS_D_BCK => $MySQLaccess::ACCESS_D,
  1064.                    $MySQLaccess::ACCESS_U => $MySQLaccess::ACCESS_U_BCK,
  1065.                    $MySQLaccess::ACCESS_H => $MySQLaccess::ACCESS_H_BCK,
  1066.                    $MySQLaccess::ACCESS_D => $MySQLaccess::ACCESS_D_BCK,
  1067.                  ); 
  1068.     my $tbl;
  1069.     my $query="";
  1070.     my $delim;
  1071.     my $skip;
  1072.     my $create;
  1073.     my @known_tables=();
  1074.  
  1075. #    print STDERR "CreateTable($table)\n";
  1076.     MySQLaccess::Debug::Print(1,"CreateTable($table):");
  1077.  
  1078.     ## error-handling
  1079.     return 'Unknown_table' unless defined($tables{$table});
  1080.  
  1081.     ## build list of known/existing tables;
  1082.     ## if 'force' existing table is dropped first
  1083.     if (defined($force) and $force) {
  1084.        @known_tables = Show_Tables();
  1085.        if (grep(/^$table$/,@known_tables)) {
  1086.        $query = "DROP TABLE $table;";
  1087.        }
  1088.     }
  1089.  
  1090.     ## path to mysqldump executable
  1091.     my $connect = $MySQLaccess::MYSQLDUMP;
  1092.     $connect .= " --defaults-file=$MySQLaccess::MYSQL_CNF --no-data";
  1093.     # superuser, spassword transmitted via defaults-file
  1094.     if (defined($MySQLaccess::Param{'rhost'}))     { $connect .= " --host=$MySQLaccess::Param{'rhost'}"; }
  1095.     $connect .= " $MySQLaccess::ACCESS_DB";
  1096.     $connect .= " $tables{$table}";
  1097.  
  1098.  
  1099.     ## get creation-data for original table
  1100.     $create = '';
  1101.     my $mysqldump = $connect;
  1102.     $mysqldump =~ s/ \$TABLE / $tbl /;
  1103.  
  1104.     # open connection (not using /bin/sh -c)
  1105.     MySQLaccess::Debug::Print(2,"Connecting to: $connect");
  1106.     $pid=IPC::Open3::open3(\*DONTCARE,\*CREATE,"",split /\s+/,$mysqldump);
  1107.     MySQLaccess::Debug::Print(2,"PID of open pipe: $pid");
  1108.     #open(CREATE,"$mysqldump");
  1109.     @create = <CREATE>;
  1110.     $create = "@create";
  1111.     foreach $nerror (sort(keys(%ACCESS_ERR))) {
  1112.        MySQLaccess::Debug::Print(3,"check answer for error $ACCESS_ERR{$nerror}");
  1113.        if (grep(/$ACCESS_ERR{$nerror}/i,$create)) { 
  1114.           MySQLaccess::Debug::Print(2,"Answer contain error [$nerror]");
  1115.           return $nerror; 
  1116.        }
  1117.     }
  1118.     close(CREATE);
  1119.     close(DONTCARE);
  1120.  
  1121.     ## manipulate result for creation-data for temporary table
  1122.     $create =~ s/CREATE TABLE $tables{$table} \(/CREATE TABLE $table \(/;
  1123.  
  1124.     ## recreate temporary table
  1125.     $query .= "$create\n";
  1126.     $query .= "select 'ok';";
  1127.  
  1128.     ## execute query
  1129.     print MYSQL_Q "$query\n";
  1130. #    print STDERR $query;
  1131.  
  1132.     $answer = <MYSQL_A>; #answer from mysql
  1133. #    print STDERR "A>",$answer;
  1134.     MySQLaccess::Debug::Print(2,"Answer: $answer\n");
  1135.     foreach $nerror (sort(keys(%ACCESS_ERR))) {
  1136. #       print STDERR "->$nerror?";
  1137.        MySQLaccess::Debug::Print(3,"check answer for error $ACCESS_ERR{$nerror}");
  1138.        if (grep(/$ACCESS_ERR{$nerror}/i,$answer)) { 
  1139. #          print STDERR "Yes!";
  1140.           MySQLaccess::Debug::Print(2,"Answer contain error [$nerror]");
  1141.           return $nerror; 
  1142.        }
  1143.     }
  1144.  
  1145.     $delim = <MYSQL_A>; # read header
  1146.     if ($delim ne "ok\n") {
  1147.        while (($line=<MYSQL_A>) ne "ok\n")
  1148.        { MySQLaccess::Debug::Print(3," A> $line"); }
  1149.         $skip = <MYSQL_A>; # skip result 'ok'
  1150.     }
  1151. #    print STDERR "CreateTable done\n";
  1152.     return 0;
  1153. }
  1154.  
  1155.  
  1156. # ===========================================================
  1157. # sub CopyTable()
  1158. #  Copy the structure and the data of a table to another table
  1159. # ===========================================================
  1160. sub CopyTable {
  1161.     my ($from,$to,$force) = @_;
  1162.     my @known_tables  = Show_Tables();    
  1163.     my $query = "";
  1164.     my $nerror= 0;
  1165.     my $skip;
  1166.  
  1167. #    print STDERR "CopyTable($from,$to)\n";
  1168.     MySQLaccess::Debug::Print(1,"MySQLaccess::DB::CopyTable($from,$to)");
  1169.  
  1170.     ## error-handling
  1171.     if (!grep(/^$from$/,@known_tables)) { return 'Unknown_table'; }
  1172.  
  1173.     ## copy structure 
  1174.     ## if forced
  1175.     if (defined($force) and $force) {
  1176.        return $nerror if ($nerror=CreateTable($to,$force)); 
  1177. #       print STDERR "Structure copied\n";
  1178.     }
  1179.  
  1180.     ## copy data
  1181.     $query .= "DELETE FROM $to;";
  1182.     $query .= "INSERT INTO $to SELECT * FROM $from;";
  1183.     $query .= "SELECT 'ok';\n";
  1184.     MySQLaccess::Debug::Print(2,"Query: $query");
  1185.        
  1186.     ## execute query
  1187.     print MYSQL_Q "$query\n";
  1188. #    print STDERR $query;
  1189.  
  1190.     ## check for errors...
  1191.     my $answer = <MYSQL_A>; #answer from mysql
  1192. #    print STDERR $answer;
  1193.     MySQLaccess::Debug::Print(2,"Answer: $answer\n");
  1194.     foreach $nerror (sort(keys(%ACCESS_ERR))) {
  1195.        MySQLaccess::Debug::Print(3,"check answer for error $ACCESS_ERR{$nerror}");
  1196.        if (grep(/$ACCESS_ERR{$nerror}/i,$answer)) { 
  1197.           MySQLaccess::Debug::Print(2,"Answer contain error [$nerror]");
  1198.           return $nerror; 
  1199.        }
  1200.     }
  1201.  
  1202.     my $delim = <MYSQL_A>; # read header
  1203. #    print STDERR $delim;
  1204.     if ($delim ne "ok\n") {
  1205.        while (($line=<MYSQL_A>) ne "ok\n")
  1206.        { MySQLaccess::Debug::Print(3," A> $line"); }
  1207.        $skip = <MYSQL_A>; # skip result 'ok'
  1208.     }
  1209.  
  1210.     return 0;
  1211. }
  1212.  
  1213. # ===========================================================
  1214. # sub LoadTmpTables()
  1215. #  (Re)load temporary tables with entries of ACL-tables
  1216. # ===========================================================
  1217. sub LoadTmpTables {
  1218.     my %tables = ( $MySQLaccess::ACCESS_U => $MySQLaccess::ACCESS_U_TMP,
  1219.                    $MySQLaccess::ACCESS_H => $MySQLaccess::ACCESS_H_TMP,
  1220.                    $MySQLaccess::ACCESS_D => $MySQLaccess::ACCESS_D_TMP,
  1221.                  ); 
  1222.     my $tbl;
  1223.     my $nerror;
  1224.     
  1225. #    print STDERR "LoadTmpTables:\n";
  1226.     MySQLaccess::Debug::Print(1,"LoadTmpTables():");
  1227.     foreach $tbl (keys(%tables)) {
  1228. #       print STDERR "$tbl -> $tables{$tbl}\n";
  1229.        MySQLaccess::Debug::Print(2,"Loading table $tbl -> $tables{$tbl}.");
  1230.        return $nerror if ($nerror=CopyTable($tbl,$tables{$tbl},'force'));
  1231.     }
  1232.     return 0;
  1233. }
  1234.  
  1235. # ===========================================================
  1236. # sub BackupGrantTables()
  1237. #  Make a backup of the original grant-tables
  1238. # ===========================================================
  1239. sub BackupGrantTables {
  1240.     my %tables = ( $MySQLaccess::ACCESS_U => $MySQLaccess::ACCESS_U_BCK,
  1241.                    $MySQLaccess::ACCESS_H => $MySQLaccess::ACCESS_H_BCK,
  1242.                    $MySQLaccess::ACCESS_D => $MySQLaccess::ACCESS_D_BCK,
  1243.                  ); 
  1244.     my $tbl;
  1245.     my $nerror;
  1246.     
  1247. #    print STDERR "BackupGrantTables:\n";
  1248.     MySQLaccess::Debug::Print(1,"BackupGrantTables():");
  1249.     foreach $tbl (keys(%tables)) {
  1250. #       print STDERR "$tbl -> $tables{$tbl}\n";
  1251.        MySQLaccess::Debug::Print(2,"Backup table $tbl -> $tables{$tbl}.");
  1252.        return $nerror if ($nerror=CopyTable($tbl,$tables{$tbl},'force'));
  1253.     }
  1254.     return 0;
  1255. }
  1256.  
  1257. # ===========================================================
  1258. # sub RollbackGrantTables()
  1259. #  Rollback the backup of the grant-tables
  1260. # ===========================================================
  1261. sub RollbackGrantTables {
  1262.     my %tables = ( $MySQLaccess::ACCESS_U_BCK => $MySQLaccess::ACCESS_U,
  1263.                    $MySQLaccess::ACCESS_H_BCK => $MySQLaccess::ACCESS_H,
  1264.                    $MySQLaccess::ACCESS_D_BCK => $MySQLaccess::ACCESS_D,
  1265.                  ); 
  1266.     my $tbl;
  1267.     my $nerror;
  1268.     
  1269. #    print STDERR "RollbackGrantTables:\n";
  1270.     MySQLaccess::Debug::Print(1,"RollbackGrantTables():");
  1271.     foreach $tbl (keys(%tables)) {
  1272. #       print STDERR "$tbl -> $tables{$tbl}\n";
  1273.        MySQLaccess::Debug::Print(2,"Rollback table $tbl -> $tables{$tbl}.");
  1274.        return $nerror if ($nerror=CopyTable($tbl,$tables{$tbl},'force'));
  1275.     }
  1276.     return 0;
  1277. }
  1278.  
  1279.  
  1280. # ===========================================================
  1281. # sub CommitGrantTables()
  1282. #  Copy grant-rules from temporary tables to the ACL-tables
  1283. # ===========================================================
  1284. sub CommitGrantTables {
  1285.     my %tables = ( $MySQLaccess::ACCESS_U => $MySQLaccess::ACCESS_U_TMP,
  1286.                    $MySQLaccess::ACCESS_H => $MySQLaccess::ACCESS_H_TMP,
  1287.                    $MySQLaccess::ACCESS_D => $MySQLaccess::ACCESS_D_TMP,
  1288.                  ); 
  1289.     my $tbl;
  1290.     my $query;
  1291.     my $delim;
  1292.     my $skip;
  1293.     my $create;
  1294.  
  1295.     print STDERR "CommitGrantTables()\n";
  1296.     MySQLaccess::Debug::Print(1,"CommitGrantTables():");
  1297.     
  1298.     ## Make backup of original grant-tables
  1299.     MySQLaccess::Debug::Print(2,"Making backup of original grant-tables...");
  1300.     BackupGrantTables();
  1301.  
  1302.     ## Copy data from temporay tables to grant-tables
  1303.     foreach $tbl (keys(%tables)) {
  1304.        print STDERR "$tbl -> $tables{$tbl}\n";
  1305.        MySQLaccess::Debug::Print(2,"Loading data $tables{$tbl} -> $tbl.");
  1306.        return $nerror if ($nerror=CopyTable($tables{$tbl},$tbl));
  1307.     }
  1308.     return 0;
  1309. }
  1310.  
  1311.  
  1312. # ===========================================================
  1313. # sub Show_Fields($table): 
  1314. #  return (a reference to) a hash which holds the names
  1315. #  of all relevant grant-fields, with their index in the record,
  1316. #  and (a reference to) an array which holds the fieldnames.
  1317. # ===========================================================
  1318. sub Show_Fields {
  1319.     my ($table) = @_;
  1320.     my %skip = ('host' => [0,1]
  1321.                ,'user' => [0,1,2]
  1322.                ,'db'   => [0,1,2]
  1323.                );
  1324.     my %Struct = ();
  1325.     my @Struct = ();
  1326.     my $query = "show fields from $table;select 'ok';\n";
  1327.     my $i=0;
  1328.     my $line;
  1329.  
  1330. #print STDERR $query;
  1331.     MySQLaccess::Debug::Print(1,"Show_Fields($table):");
  1332.     MySQLaccess::Debug::Print(2,"SQL: $query");
  1333.  
  1334.     print MYSQL_Q "$query";
  1335.     my $skip = <MYSQL_A>;  #skip header
  1336.     while (($line=<MYSQL_A>) ne "ok\n")
  1337.     {
  1338. #print STDERR ">",$line;
  1339.     chop($line);
  1340.     MySQLaccess::Debug::Print(2," $table>: $line");
  1341.     my ($field,$type,$null,$key,$default,$extra) = split(' ',$line);
  1342.         $field = ucfirst($field); 
  1343.     MySQLaccess::Debug::Print(3, " <split: $field - $type - $null - $key - $default - $extra");
  1344.     if (! grep(/$i/,@{$skip{$table}}) ){
  1345.        $Struct{$field} = $i; #hash
  1346.        push(@Struct,$field); #array
  1347.        MySQLaccess::Debug::Print(3," ==> added column[$i]: $field ($Struct{$field})");
  1348.     } 
  1349.         else {
  1350.            MySQLaccess::Debug::Print(3," ==> skipped column[$i], value=[$field]");
  1351.         }
  1352.     $i++;
  1353.     }
  1354.  
  1355.     $skip=<MYSQL_A>;  # Get ok row (found already ok header)
  1356.  
  1357.     MySQLaccess::Debug::Print(2, "Array:");
  1358.     foreach $field (@Struct) { MySQLaccess::Debug::Print(2,"+ $field"); }
  1359.     MySQLaccess::Debug::Print(2,"Hash:");
  1360.     foreach $field (keys(%Struct)) { MySQLaccess::Debug::Print(2,"+ $field -> $Struct{$field}"); }
  1361.  
  1362.     return  (\%Struct,\@Struct); 
  1363. }
  1364.  
  1365. # ===========================================================
  1366. # sub Show_Tables(): 
  1367. #  return (a reference to) an array which holds all 
  1368. #  known tables.
  1369. # ===========================================================
  1370. sub Show_Tables {
  1371.     my @Tables = ();
  1372.     my $query = "show tables;select 'ok';\n";
  1373.     my $i=0;
  1374.     my $line;
  1375.  
  1376.     MySQLaccess::Debug::Print(1,"Show_Tables():");
  1377.     MySQLaccess::Debug::Print(2,"SQL: $query");
  1378.  
  1379.     print MYSQL_Q "$query";
  1380.     my $skip = <MYSQL_A>;  #skip header
  1381.     while (($line=<MYSQL_A>) ne "ok\n")
  1382.     {
  1383.     chop($line);
  1384.     push(@Tables,$line); #array
  1385.     MySQLaccess::Debug::Print(3," ==> added table: $line");
  1386.     }
  1387.  
  1388.     $skip=<MYSQL_A>;  # Get ok row (found already ok header)
  1389.  
  1390.     MySQLaccess::Debug::Print(2, "Array:");
  1391.     foreach $tbl (@Tables) { MySQLaccess::Debug::Print(2,"+ $tbl"); }
  1392.  
  1393.     return @Tables; 
  1394. }
  1395.  
  1396. # ======================================
  1397. # sub Validate_Password($passwd,$host,$user,$encpw)
  1398. #  Validate the given password 
  1399. #  for user '$user' 
  1400. #  connecting from host '$host'
  1401. # ======================================
  1402. sub Validate_Password {
  1403.     my ($password,$host,$user,$encpw) = @_;
  1404.     my $valid=0;
  1405.  
  1406.     MySQLaccess::Debug::Print(1,"Validate_Password($password,$host,$user,$encpw)");
  1407.     my $sql = "select host,user,password from user having "
  1408.              ."host='$host' and user='$user' and password='$encpw' "
  1409.              ."and password=PASSWORD('$password');\n";
  1410.     $sql .= "select 'ok';\n";
  1411.     MySQLaccess::Debug::Print(2,"SQL = $sql");
  1412.     print MYSQL_Q "$sql";
  1413.     
  1414.     # if password is valid, at least 1 row returns before we read 'ok'
  1415.     while ( ($line=<MYSQL_A>) ne "ok\n") {
  1416.       MySQLaccess::Debug::Print(2," A> $line");
  1417.       $valid = defined($line); 
  1418.     }
  1419.     my $skip = <MYSQL_A>; # read 'ok'
  1420.  
  1421.     return $valid;
  1422. }
  1423.  
  1424.  
  1425. # ==========================================================
  1426. # sub Sort_fields: (rewritten by psmith)
  1427. #  Build the query for an ordered list of entries
  1428. # ==========================================================
  1429. sub Sort_fields {
  1430.   my ($start, $end, $sofar, $this, @rest) = (@_);
  1431.   my @where = ("((FIELD not like '\\%') AND (FIELD <> ''))",
  1432.                "((FIELD like '%\\%%') OR (FIELD like '%\\_%'))",
  1433.                "(FIELD = '')");
  1434.   my $res = '';
  1435.  
  1436.   $this or return ("$start $sofar $end");
  1437.  
  1438.   $sofar .= ' AND ' if $sofar;
  1439.  
  1440.   foreach $w (@where) {
  1441.     my $f = $w;
  1442.     $f =~ s/FIELD/$this/g;
  1443.  
  1444.     $res .= Sort_fields($start, $end, "$sofar$f", @rest);
  1445.   }
  1446.  
  1447.   return ($res);
  1448. }
  1449.  
  1450. # ===========================================================
  1451. # sub Sort_table: (rewritten by psmith)
  1452. #  return all entries in the given table,
  1453. #  in an ordered fashion
  1454. # ===========================================================
  1455. sub Sort_table {
  1456.     my ($tbl, @order) = @_;
  1457.     my @res=();
  1458.  
  1459.     # as long as there's no full where clause (Distrib 3.20)...
  1460.     # use having :-(
  1461.     # NOTE: this clause WILL NOT work on 3.21, because of the
  1462.     # order of 'ORDER BY' and 'HAVING'
  1463.     my $start = "SELECT *,UCASE(host) as ucase_host FROM $tbl ";
  1464.     $start   .= 'ORDER BY ' . join(',', @order) ." HAVING ";
  1465.     my $end   = ";\n";
  1466.  
  1467.     # server version 3.21 has a full where clause :-)
  1468.     if ($MySQLaccess::Host::SERVER >= '3.21') {
  1469.     # print "+++USING FULL WHERE CLAUSE+++\n";
  1470.        $start = "SELECT *,UCASE(host) as ucase_host FROM $tbl WHERE ";
  1471.        $end = ' ORDER BY ' . join(',', @order) . ";\n";
  1472.     }
  1473.  
  1474.     MySQLaccess::Debug::Print(1,"Sort_table():");
  1475.     MySQLaccess::Debug::Print(2,"Sorting table $tbl by `@order'");
  1476.  
  1477.     my $tmp;
  1478.     foreach $tmp (@order)
  1479.     {
  1480.       $tmp="UCASE(host)" if ($tmp eq "ucase_host");
  1481.     }
  1482.     my $query  = Sort_fields($start, $end, '', @order);
  1483.     $query    .= "select 'ok';\n";
  1484.     MySQLaccess::Debug::Print(2,"Query: $query");
  1485.  
  1486.     print MYSQL_Q "$query\n";
  1487.  
  1488.     my $delim = <MYSQL_A>; # read header
  1489.     MySQLaccess::Debug::Print(3," A> $delim");
  1490.     if ($delim ne "ok\n") {
  1491.        if ($delim =~ /^ERROR/) {
  1492.        push(@MySQLaccess::Grant::Error,'use_old_server');
  1493.        MySQLaccess::Report::Print_Error_Messages() ;
  1494.        exit 1;
  1495.        }
  1496.        while (($line=<MYSQL_A>) ne "ok\n")
  1497.        {
  1498.            MySQLaccess::Debug::Print(3," A> $line");
  1499.            push(@res,$line);
  1500.        }
  1501.     }
  1502.     my $skip = <MYSQL_A>; # skip result 'ok'
  1503.  
  1504.     # remove columnheaders from output
  1505.     @res = grep(!/^\Q$delim\E$/, @res);
  1506.     # remove trailing \n from each returned record
  1507.     chomp(@res); 
  1508.     # each record has 1 field to much : ucase_host
  1509.     @res = grep { /(.*)\t.*$/; $_ = $1; } @res;
  1510.  
  1511.     MySQLaccess::Debug::Print(2,"Result of sorted table $tbl:");
  1512.     foreach $line (@res) { MySQLaccess::Debug::Print(2," >>$line"); }
  1513.     return @res;
  1514. }
  1515.  
  1516. # ===========================================================
  1517. # sub Get_All_db(template): 
  1518. #  return all db the grant-tables are working on,
  1519. #  which conform to the template
  1520. # ===========================================================
  1521. sub Get_All_dbs {
  1522.    my ($template,$tmp) = @_;
  1523.    my @db=();
  1524.    my $aref;
  1525.  
  1526.    # working with  temporary tables or production tables
  1527.    if (defined($tmp) and $tmp) {
  1528.       $aref = \@MySQLaccess::Grant::sorted_db_tmp_table ;
  1529.    }
  1530.    else {
  1531.       $aref = \@MySQLaccess::Grant::sorted_db_table;
  1532.    }
  1533.  
  1534.    MySQLaccess::Debug::Print(1," template=[$template]");
  1535.  
  1536.    # get all db for which access-rights can be calculated,
  1537.    # which conform to the template.
  1538.    # !! these db's don't have to exist yet, so it's not
  1539.    #    enough to look which db already exist on the system
  1540.    $reg_expr = $template;
  1541.    if ($template =~ /[\*\?]/) {
  1542.       $reg_expr =~ tr/*?/%_/;
  1543.       #$reg_expr = MySQLaccess::Wildcards::Wild2Reg($template);
  1544.    }
  1545.    $reg_expr = MySQLaccess::Wildcards::SQL2Reg("$reg_expr");
  1546.  
  1547.    if ( ! ($template =~ /[\*\?%_]/) ) {
  1548.       push(@db,$template);
  1549.       return \@db;
  1550.    }
  1551.  
  1552.    MySQLaccess::Debug::Print(2,"#Reading db-table...");
  1553.    foreach $record (@{$aref}) { #MySQLaccess::Grant::sorted_db_table) {
  1554.     my @record=split(/\t/,$record);
  1555.     my $db = $record[1];
  1556.     MySQLaccess::Debug::Print(2,"> $db ");
  1557.     if ( (!grep(/$db/i,@db)) and ($db =~/$reg_expr/i) ) {
  1558.        push(@db,$db);
  1559.        MySQLaccess::Debug::Print(2,"added");
  1560.     } 
  1561.     else {
  1562.        MySQLaccess::Debug::Print(2,"skipped");
  1563.     }
  1564.    }
  1565.    # if no rule is found for a certain db in the db-table,
  1566.    # the rights of the user are used, so we should inform
  1567.    # the user for
  1568.    if (!grep(/^%$/,@db)) { push(@db,"$MySQLaccess::NEW_DB"); }
  1569.    return \@db;
  1570. }
  1571.  
  1572. # ===========================================================
  1573. # sub Get_All_users(template): 
  1574. #  return all users the grant-tables are working on,
  1575. #  which conform to the template
  1576. # ===========================================================
  1577. sub Get_All_users {
  1578.    ($template,$tmp) = @_; # nog verder uitwerken!!!
  1579.    my @user=();
  1580.    my $aref;
  1581.  
  1582.    # working with  temporary tables or production tables
  1583.    if (defined($tmp) and $tmp) {
  1584.       $aref = \@MySQLaccess::Grant::sorted_user_tmp_table ;
  1585.    }
  1586.    else {
  1587.       $aref = \@MySQLaccess::Grant::sorted_user_table;
  1588.    }
  1589.  
  1590.    MySQLaccess::Debug::Print(1,"Debug Get_All_users:");
  1591.    # get all db for which access-rights can be calculated.
  1592.    # !! these db's don't have to exist yet, so it's not
  1593.    #    enough to look which db already exist on the system
  1594.    $reg_expr = $template;
  1595.    if ($template =~ /[\*\?]/) {
  1596.       $reg_expr =~ tr/*?/%_/;
  1597.       #$reg_expr = MySQLaccess::Wildcards::Wild2Reg($template);
  1598.    }
  1599.    $reg_expr = MySQLaccess::Wildcards::SQL2Reg("$reg_expr");
  1600.  
  1601.    if ( ! ($template =~ /[\*\?%_]/) ) {
  1602.       push(@user,$template);
  1603.       return \@user;
  1604.    }
  1605.  
  1606.    MySQLaccess::Debug::Print(2,"#Reading user-table...");
  1607.    foreach $record (@{$aref}) { #MySQLaccess::Grant::sorted_user_table) {
  1608.     my @record=split(/\t/,$record);
  1609.     my $user = $record[1];
  1610.     MySQLaccess::Debug::Print(2,"> $user ");
  1611.     if ( (!grep(/$user/,@user)) and ($user=~/$reg_expr/)) {
  1612.        push(@user,$user);
  1613.        MySQLaccess::Debug::Print(2, "added");
  1614.     } 
  1615.     else {
  1616.        MySQLaccess::Debug::Print(2, "skipped");
  1617.     }
  1618.    }
  1619.    # Any user means also:
  1620.    # - the 'empty' user, ie without supplying a username
  1621.    # - any user still to be defined/created
  1622.    #push(@user,'');               #without_suplying_a_username
  1623.    push(@user,"$MySQLaccess::NEW_USER");
  1624.    #push(@Warnings,'minimum_priv');
  1625.    return \@user;
  1626. }
  1627.  
  1628. # ===========================================================
  1629. # sub Get_All_hosts(template): 
  1630. #  return all hosts the grant-tables are working on,
  1631. #  which conform to the template
  1632. # ===========================================================
  1633. sub Get_All_hosts {
  1634.    my ($template,$tmp) = @_;
  1635.    my @host=();
  1636.    my $aref;
  1637.    my $aref1;
  1638.  
  1639.    # working with  temporary tables or production tables
  1640.    if (defined($tmp) and $tmp) {
  1641.       $aref = \@MySQLaccess::Grant::sorted_host_tmp_table ;
  1642.       $aref1= \@MySQLaccess::Grant::sorted_db_tmp_table ;
  1643.    }
  1644.    else {
  1645.       $aref = \@MySQLaccess::Grant::sorted_host_table;
  1646.       $aref1= \@MySQLaccess::Grant::sorted_db_table ;
  1647.    }
  1648.  
  1649.    MySQLaccess::Debug::Print(1, "Debug Get_All_hosts:");
  1650.    # get all db for which access-rights can be calculated.
  1651.    # !! these db's don't have to exist yet, so it's not
  1652.    #    enough to look which db already exist on the system
  1653.    $reg_expr = $template;
  1654.    if ($template =~ /[\*\?]/) {
  1655.       $reg_expr =~ tr/*?/%_/;
  1656.       #$reg_expr = MySQLaccess::Wildcards::Wild2Reg($template);
  1657.    }
  1658.    $reg_expr = MySQLaccess::Wildcards::SQL2Reg("$reg_expr");
  1659.  
  1660.    if ( ! ($template =~ /[\*\?%_]/) ) {
  1661.       push(@host,$template);
  1662.       return \@host;
  1663.    }
  1664.  
  1665.    MySQLaccess::Debug::Print(1, "#Reading db-table...");
  1666.    foreach $record (@{$aref1}) { #MySQLaccess::Grant::sorted_db_table) {
  1667.     my @record=split(/\t/,$record);
  1668.     my $host = $record[0];
  1669.     MySQLaccess::Debug::Print(2, "> $host ");
  1670.     if (! grep(/$host/i,@host)) {
  1671.        push(@host,$host);
  1672.        MySQLaccess::Debug::Print(2, "added");
  1673.     } 
  1674.     else {
  1675.        MySQLaccess::Debug::Print(2, "skipped");
  1676.     }
  1677.    }
  1678.    MySQLaccess::Debug::Print(1, "#Reading host-table...");
  1679.    foreach $record (@{$aref}) {
  1680.     my @record=split(/\t/,$record);
  1681.     my $host = $record[0];
  1682.     MySQLaccess::Debug::Print(2, "> $host ");
  1683.     if ( (!grep(/$host/,@host)) and ($host=~/$reg_expr/)) {
  1684.        push(@host,$host);
  1685.        MySQLaccess::Debug::Print(2, "added");
  1686.     } 
  1687.     else {
  1688.        MySQLaccess::Debug::Print(2, "skipped");
  1689.     }
  1690.    }
  1691.    # DOUBT:
  1692.    #print "#Reading user-table...\n" if ($DEBUG>1);
  1693.    #foreach $record (@MySQLaccess::Grant::sorted_user_table) {
  1694.    # my @record=split(/\t/,$record);
  1695.    # my $host = $record[0];
  1696.    # print "> $host " if ($DEBUG>2);
  1697.    # if ( (!grep(/$host/,@host)) and ($host=~/$reg_expr/)) {
  1698.    #    push(@host,$host);
  1699.    #    print "added\n" if ($DEBUG>2);
  1700.    # } 
  1701.    # else {
  1702.    #    print "skipped\n" if ($DEBUG>2);
  1703.    # }
  1704.    #}
  1705.    # Any host also means:
  1706.    # - any host still to be defined/created
  1707.    #push(@host,"any_other_host");
  1708.  
  1709.    @host = sort(@host);
  1710.    return \@host;
  1711. }
  1712.  
  1713.  
  1714. ##########################################################################
  1715. package MySQLaccess::Grant;
  1716. ##############
  1717. BEGIN {
  1718.     $DEBUG     = 0;
  1719.     $DEBUG     = $MySQLaccess::DEBUG unless ($DEBUG);
  1720. }
  1721.  
  1722.  
  1723.  
  1724. # ===========================================================
  1725. # sub Diff_Privileges()
  1726. #  Calculate diff between temporary and original grant-tables
  1727. # ===========================================================
  1728. sub Diff_Privileges {
  1729.    my @before=();
  1730.    my @after =();
  1731.    my @diffs =();
  1732.  
  1733.    # -----------------------------
  1734.    # Build list of users,dbs,hosts
  1735.    # to process...
  1736.    my @all_dbs   = @{MySQLaccess::DB::Get_All_dbs('*')};
  1737.    my @all_users = @{MySQLaccess::DB::Get_All_users('*')};
  1738.    my @all_hosts = @{MySQLaccess::DB::Get_All_hosts('*')};
  1739.    #if EDIT-mode
  1740.    my @all_dbs_tmp   = @{MySQLaccess::DB::Get_All_dbs('*','tmp')};
  1741.    my @all_users_tmp = @{MySQLaccess::DB::Get_All_users('*','tmp')};
  1742.    my @all_hosts_tmp = @{MySQLaccess::DB::Get_All_hosts('*','tmp')};
  1743.  
  1744.  
  1745.    my %Access;
  1746.    # ------------------------------------
  1747.    # Build list of priv. for grant-tables
  1748.    foreach $host (@all_hosts) {
  1749.      foreach $user (@all_users) {
  1750.        foreach $db (@all_dbs) {
  1751.          MySQLaccess::Grant::Initialize();
  1752.          %Access = MySQLaccess::Grant::Get_Access_Rights($host,$user,$db);    
  1753.          push(@before,MySQLaccess::Report::Raw_Report($host,$user,$db,\%Access));
  1754.        }
  1755.      }
  1756.    }
  1757.  
  1758.    # ----------------------------------
  1759.    # Build list of priv. for tmp-tables
  1760.    foreach $host (@all_hosts_tmp) {
  1761.      foreach $user (@all_users_tmp) {
  1762.        foreach $db (@all_dbs_tmp) {
  1763.          MySQLaccess::Grant::Initialize('tmp');
  1764.          %Access = MySQLaccess::Grant::Get_Access_Rights($host,$user,$db,'tmp');    
  1765.          push(@after,MySQLaccess::Report::Raw_Report($host,$user,$db,\%Access));
  1766.        }
  1767.      }
  1768.    }
  1769.  
  1770.    # ----------------------------------
  1771.    # Write results to temp-file to make
  1772.    # DIFF
  1773.    @before = sort(@before);
  1774.    @after  = sort(@after);
  1775.  
  1776.    ($hb, $before) = tempfile("$MySQLaccess::script.XXXXXX") or
  1777.     push(@MySQLaccess::Report::Errors,"Can't create temporary file: $!");
  1778.    ($ha, $after)  = tempfile("$MySQLaccess::script.XXXXXX") or
  1779.     push(@MySQLaccess::Report::Errors,"Can't create temporary file: $!");
  1780.  
  1781.    print $hb join("\n",@before);
  1782.    print $ha join("\n",@after);
  1783.    close $hb;
  1784.    close $ha;
  1785.  
  1786.    # ----------------------------------
  1787.    # compute difference
  1788.    my $cmd="$MySQLaccess::DIFF $before $after |";
  1789.    open(DIFF,"$cmd");
  1790.    @diffs = <DIFF>;
  1791.    @diffs = grep(/[<>]/,@diffs);
  1792.    chomp(@diffs);
  1793.    close(DIFF);
  1794.  
  1795.    # ----------------------------------
  1796.    # cleanup temp. files
  1797.    unlink($before);
  1798.    unlink($after);
  1799.  
  1800.    return \@diffs;
  1801. }
  1802.  
  1803. # ===========================================================
  1804. # sub Initialize()
  1805. #
  1806. # ===========================================================
  1807. sub Initialize {
  1808.     %MySQLaccess::Grant::Access       = %{Default_Access_Rights()};
  1809.     @MySQLaccess::Grant::Errors       = ();
  1810.     @MySQLaccess::Grant::Warnings     = ();
  1811.     @MySQLaccess::Grant::Notes        = ();
  1812.     # -----
  1813.     # rules
  1814.     $MySQLaccess::Grant::Rules{'user'} = 'no_rule_found';
  1815.     $MySQLaccess::Grant::Rules{'db'}   = 'no_rule_found';
  1816.     $MySQLaccess::Grant::Rules{'host'} = 'no_equiv_host';
  1817.     $MySQLaccess::Grant::full_access   = 1;
  1818.  
  1819.     $MySQLaccess::Grant::process_host_table = 0;
  1820.     return 1;
  1821. }
  1822.  
  1823. # ===========================================================
  1824. # sub ReadTables()
  1825. #  
  1826. # ===========================================================
  1827. sub ReadTables {
  1828.     my ($tmp) = @_;
  1829.     my ($HOST,$DB,$USER);
  1830.     my @tables;
  1831.  
  1832.     # build list of available tables
  1833.     @tables = MySQLaccess::DB::Show_Tables();
  1834.  
  1835.     # reading production grant-tables or temporary tables?
  1836.     $tmp = (defined($tmp) and $tmp) ? 1 : 0;
  1837.     if ($tmp) { #reading temporary tables
  1838.        $HOST=$MySQLaccess::ACCESS_H_TMP;
  1839.        $DB  =$MySQLaccess::ACCESS_D_TMP;
  1840.        $USER=$MySQLaccess::ACCESS_U_TMP;
  1841.  
  1842.        # ----------------------------
  1843.        # do tables exist?
  1844.        if (!grep(/$HOST/,@tables)) { MySQLaccess::DB::CreateTable($HOST); }
  1845.        if (!grep(/$USER/,@tables)) { MySQLaccess::DB::CreateTable($USER); }
  1846.        if (!grep(/$DB/,@tables))   { MySQLaccess::DB::CreateTable($DB); }
  1847.  
  1848.        MySQLaccess::Debug::Print(1,"Finding fields in tmp-ACL files:");
  1849.        # -----------------------------
  1850.        # Get record-layout 
  1851.        my ($h1,$h2) = MySQLaccess::DB::Show_Fields($HOST);
  1852.        my ($d1,$d2) = MySQLaccess::DB::Show_Fields($DB);
  1853.        my ($u1,$u2) = MySQLaccess::DB::Show_Fields($USER);
  1854.        %MySQLaccess::Grant::H_tmp = %{$h1}; @MySQLaccess::Grant::H_tmp = @{$h2};
  1855.        %MySQLaccess::Grant::D_tmp = %{$d1}; @MySQLaccess::Grant::D_tmp = @{$d2};
  1856.        %MySQLaccess::Grant::U_tmp = %{$u1}; @MySQLaccess::Grant::U_tmp = @{$u2};
  1857.  
  1858. #       @MySQLaccess::Grant::Privileges_tmp=@{Make_Privlist()};
  1859. #
  1860.        MySQLaccess::Debug::Print(1, "Reading sorted temp-tables:");
  1861.        @MySQLaccess::Grant::sorted_db_tmp_table  = MySQLaccess::DB::Sort_table($DB, 'ucase_host', 'user', 'db');
  1862.        @MySQLaccess::Grant::sorted_host_tmp_table= MySQLaccess::DB::Sort_table($HOST, 'ucase_host', 'db');
  1863.        @MySQLaccess::Grant::sorted_user_tmp_table= defined($MySQLaccess::Param{'password'}) ?
  1864.                            MySQLaccess::DB::Sort_table($USER, 'ucase_host', 'user', 'password'):
  1865.                            MySQLaccess::DB::Sort_table($USER, 'ucase_host', 'user');
  1866.     }
  1867.     else {      #reading production grant-tables
  1868.        $HOST=$MySQLaccess::ACCESS_H;
  1869.        $DB  =$MySQLaccess::ACCESS_D;
  1870.        $USER=$MySQLaccess::ACCESS_U;
  1871.  
  1872.        MySQLaccess::Debug::Print(1,"Finding fields in ACL files:");
  1873.        # -----------------------------
  1874.        # Get record-layout 
  1875.        my ($h1,$h2) = MySQLaccess::DB::Show_Fields($HOST);
  1876.        my ($d1,$d2) = MySQLaccess::DB::Show_Fields($DB);
  1877.        my ($u1,$u2) = MySQLaccess::DB::Show_Fields($USER);
  1878.        %MySQLaccess::Grant::H = %{$h1}; @MySQLaccess::Grant::H = @{$h2};
  1879.        %MySQLaccess::Grant::D = %{$d1}; @MySQLaccess::Grant::D = @{$d2};
  1880.        %MySQLaccess::Grant::U = %{$u1}; @MySQLaccess::Grant::U = @{$u2};
  1881.  
  1882.        @MySQLaccess::Grant::Privileges=@{Make_Privlist()};
  1883.  
  1884.        MySQLaccess::Debug::Print(1, "Reading sorted tables:");
  1885.        @MySQLaccess::Grant::sorted_db_table  = MySQLaccess::DB::Sort_table($DB, 'ucase_host', 'user', 'db');
  1886.        @MySQLaccess::Grant::sorted_host_table= MySQLaccess::DB::Sort_table($HOST, 'ucase_host', 'db');
  1887.        @MySQLaccess::Grant::sorted_user_table= defined($MySQLaccess::Param{'password'}) ?
  1888.                            MySQLaccess::DB::Sort_table($USER, 'ucase_host', 'user', 'password'):
  1889.                            MySQLaccess::DB::Sort_table($USER, 'ucase_host', 'user');
  1890.     }
  1891.  
  1892.     return 0;
  1893. }
  1894.  
  1895. # ===========================================================
  1896. # sub Get_Access_Rights(host,user,db)
  1897. #  report the access_rights for the tuple ($host,$user,$db).
  1898. # ===========================================================
  1899. sub Get_Access_Rights {
  1900.   local ($host,$user,$db,$tmp) = @_;
  1901.  
  1902.    my $aref_user;
  1903.    my $aref_host;
  1904.    my $aref_db;
  1905.    # working with  temporary tables or production tables
  1906.    if (defined($tmp) and $tmp) {
  1907.       $aref_user = \@MySQLaccess::Grant::sorted_user_tmp_table;
  1908.       $aref_host = \@MySQLaccess::Grant::sorted_host_tmp_table;
  1909.       $aref_db   = \@MySQLaccess::Grant::sorted_db_tmp_table;   
  1910.    }
  1911.    else {
  1912.       $aref_user = \@MySQLaccess::Grant::sorted_user_table;
  1913.       $aref_host = \@MySQLaccess::Grant::sorted_host_table;
  1914.       $aref_db   = \@MySQLaccess::Grant::sorted_db_table; 
  1915.    }
  1916.  
  1917.  
  1918.   my ($refrecord,$refgrant);
  1919.   my ($_host_,$_user_,$encpw_);
  1920.   my %_Access_;
  1921.  
  1922.   MySQLaccess::Debug::Print(1, "for ($host,$user,$db):");  
  1923.  
  1924.   # ******************************************************************************
  1925.   # Create default access-rights
  1926.   #   default access-rights are no access at all!!
  1927.  
  1928.  
  1929.   # ******************************************************************************
  1930.   # get hostname for IP-address
  1931.   # get IP-address for hostname
  1932.   local $host_name = MySQLaccess::Host::IP2Name($host);
  1933.   local $host_ip   = MySQLaccess::Host::Name2IP($host);
  1934.  
  1935.   MySQLaccess::Debug::Print(3,"host=$host, hostname=$host_name, host-ip =$host_ip");
  1936.   MySQLaccess::Debug::Print(3,"user=$user");
  1937.   MySQLaccess::Debug::Print(3,"db  =$db");
  1938.  
  1939.   # ***********************************************************************
  1940.   # retrieve information on USER
  1941.   #  check all records in mysql::user for matches with the tuple (host,user)
  1942.   # ***********************************************************************
  1943.   #    4.OR (add) the privileges for the user from the "user" table.
  1944.   #     (add all privileges which is "Y" in "user")
  1945.   ($refrecord,$refgrant)    = Get_grant_from_user($host,$user,$aref_user);
  1946.   ($_host_,$_user_,$encpw_) = @{$refrecord};
  1947.   %_access_                 = %{$refgrant};
  1948.  
  1949.   foreach $field (keys(%U)) { ##only priv. set in user-table
  1950.     $MySQLaccess::Grant::Access{$field} = ($MySQLaccess::Grant::Access{$field} or $_access_{$field});
  1951.   }
  1952.  
  1953.   if ($_user_ eq $MySQLaccess::NEW_USER) { 
  1954.      push(@Warnings,'minimum_priv');
  1955.   }
  1956.   if ($_user_ ne $user) {
  1957.      $user=$_user_;
  1958.      push(@Warnings,'anonymous_access');
  1959.   }
  1960.  
  1961.   # *******************************************************
  1962.   #  Validate password if this has been asked to do
  1963.   # *******************************************************
  1964.   if (defined($password)) {
  1965.      $valid = Validate_Password($password,$_host_,$_user_,$_encpw_,$aref_user);
  1966.      if (!$valid) { push(@Errors,'invalid_password'); }
  1967.      else         { push(@Notes,'valid_password'); }
  1968.   }
  1969.  
  1970.   # ******************************************************************************
  1971.   # retrieve information on DB
  1972.   #  check all records in mysql::db for matches with the triple (host,db,user)
  1973.   #  first match is used.
  1974.   # ******************************************************************************
  1975.   #    2.Get grant for user from the "db" table.
  1976.  
  1977.   ($refrecord,$refgrant)=Get_grant_from_db($host,$db,$user,$aref_db); #set process_host_table
  1978.   ($_host_,$_user_,$encpw_) = @{$refrecord};
  1979.   %_access_                 = %{$refgrant};
  1980.  
  1981.   foreach $field (keys(%D)) { ##only priv. set in db-table
  1982.     $MySQLaccess::Grant::Access{$field} = ($MySQLaccess::Grant::Access{$field} or $_access_{$field});
  1983.   }
  1984.  
  1985.   # ***********************************************************************
  1986.   # retrieve information on HOST
  1987.   #  check all records in mysql::host for matches with the tuple (host,db)
  1988.   #
  1989.   #  ' The host table is mainly to maintain a list of "secure" servers. '
  1990.   # ***********************************************************************
  1991.   #    3.If hostname is "empty" for the found entry, AND the privileges with
  1992.   #      the privileges for the host in "host" table.
  1993.   #      (Remove all which is not "Y" in both)
  1994.  
  1995.   if ($MySQLaccess::Grant::process_host_table) {
  1996.      ($refrecord,$refgrant)=Get_grant_from_host($host,$db,$aref_host);
  1997.      ($_host_,$_user_,$encpw_) = @{$refrecord};
  1998.      %_access_                 = %{$refgrant};
  1999.  
  2000.      foreach $field (keys(%H)) {  ##only priv. set in host-table 
  2001.        $MySQLaccess::Grant::Access{$field} = ($MySQLaccess::Grant::Access{$field} and $_access_{$field});
  2002.      } 
  2003.   }
  2004.  
  2005.   MySQLaccess::Debug::Print(1,"done for ($host,$user,$db)");
  2006.   return %MySQLaccess::Grant::Access;
  2007. }
  2008.  
  2009. # ####################################
  2010. # FINDING THE RIGHT GRANT-RULE
  2011. # ==========================================================
  2012. # sub Get_grant_from_user:
  2013. # ==========================================================
  2014. sub Get_grant_from_user {
  2015.   my ($host,$user,$aref) = @_;
  2016.  
  2017.   MySQLaccess::Debug::Print(1, "");
  2018.   MySQLaccess::Debug::Print(1, "(host=$host,user=$user)");
  2019.  
  2020.   my %Access_user = %{Default_Access_Rights()}; 
  2021.  
  2022.   my $rule_found=0;
  2023.   my @record = ();
  2024.   my $record;
  2025.  
  2026.   foreach $record (@{$aref}) {
  2027.     $MySQLaccess::Grant::full_access=0;
  2028.     MySQLaccess::Debug::Print(3, "Record= $record");
  2029.     @record=split(/\t/,$record);
  2030.  
  2031.     # check host and db
  2032.     # with possible wildcards in field
  2033.     # replace mysql-wildcards by reg-wildcards
  2034.     my $host_tpl = MySQLaccess::Wildcards::SQL2Reg($record[0]);
  2035.     my $user_tpl = $record[1]; #user field isn't pattern-matched!!
  2036.     my $passwd   = $record[2];
  2037.  
  2038.     MySQLaccess::Debug::Print(3, "=>host_tpl : read=$record[0] -> converted=$host_tpl");
  2039.     MySQLaccess::Debug::Print(3, "=>user_tpl : read=$record[1] -> $user_tpl");
  2040.     MySQLaccess::Debug::Print(3, "=>password : read=$record[2] -> $passwd");
  2041.  
  2042.  
  2043.     if ( MySQLaccess::Host::MatchTemplate($host,$host_tpl) and
  2044.          MySQLaccess::Wildcards::MatchTemplate($user_tpl,$user)
  2045.        ) 
  2046.     {
  2047.   MySQLaccess::Debug::Print(2, "FOUND!!");
  2048.         if ($passwd eq '') { push(@Warnings,'insecure_user');  }
  2049.         else               { push(@Notes,'password_required'); }
  2050.  
  2051.         foreach $field (keys(%U)) {
  2052.           $Access_user{$field} = $MySQLaccess::Report::Answer{$record[$U{$field}]};
  2053.         }
  2054.         #print "\n" if $DEBUG;
  2055.         $MySQLaccess::Grant::Rules{'user'} = $record;
  2056.         $rule_found=1;
  2057.         last;
  2058.     }
  2059.   }
  2060.  
  2061.   # -------------------------------
  2062.   #  setting privileges to user-priv
  2063.   MySQLaccess::Debug::Print(2, "Rights after parsing user-table..:");
  2064.   if (! $rule_found ) {
  2065.      @record=();
  2066.      MySQLaccess::Debug::Print(2, "NO record found in the user-table!!");
  2067.   }
  2068.   else {
  2069.      MySQLaccess::Debug::Print(2, "Selected record=@record");
  2070.      MySQLaccess::Debug::Print(2, "<=?=> $record");
  2071.   }
  2072.  
  2073.   MySQLaccess::Debug::Print(1, "returning @record");
  2074.  
  2075.   return (\@record,\%Access_user); #matching record in user-table
  2076. }
  2077.  
  2078. # ==========================================================
  2079. # sub Get_grant_from_db:
  2080. # ==========================================================
  2081. sub Get_grant_from_db {
  2082.   my ($host,$db,$user,$aref) = @_;
  2083.  
  2084.   MySQLaccess::Debug::Print(1, "(host=$host,user=$user,db=$db)");
  2085.  
  2086.   my %Access_db    = %{Default_Access_Rights()};
  2087.   my $rule_found=0;
  2088.  
  2089.   foreach $record (@{$aref}) {
  2090.     $full_access=0;
  2091.     MySQLaccess::Debug::Print(2, "Read db: $record");
  2092.     @record=split(/\t/,$record);
  2093.  
  2094.     # check host and db
  2095.     # with possible wildcards in field
  2096.     # replace mysql-wildcards by reg-wildcards
  2097.     my $host_tpl = MySQLaccess::Wildcards::SQL2Reg($record[0]);
  2098.     my $db_tpl   = MySQLaccess::Wildcards::SQL2Reg($record[1]);
  2099.     my $user_tpl = $record[2]; #user field isn't pattern matched!!
  2100.     MySQLaccess::Debug::Print(3, "=>host_tpl : read=$record[0] -> converted=$host_tpl");
  2101.     MySQLaccess::Debug::Print(3, "=>db_tpl   : read=$record[1] -> $db_tpl");
  2102.     MySQLaccess::Debug::Print(3, "=>user_tpl : read=$record[2] -> $user_tpl");
  2103.  
  2104.     if ( ( MySQLaccess::Host::Is_localhost($host_tpl)
  2105.            or  MySQLaccess::Wildcards::MatchTemplate($host_tpl,$host_name)
  2106.            or  MySQLaccess::Wildcards::MatchTemplate($host_tpl,$host_ip) )
  2107.          and ( MySQLaccess::Wildcards::MatchTemplate($db_tpl,$db) )
  2108.          and ( MySQLaccess::Wildcards::MatchTemplate($user_tpl,$user) ) ) {
  2109.  
  2110.       $MySQLaccess::Grant::process_host_table = ($record[0] eq '');
  2111.  
  2112.       if ($user_tpl eq '') { push(@Warnings,'public_database'); }
  2113.  
  2114.       foreach $field (keys(%D)) {
  2115.         $Access_db{$field} = $MySQLaccess::Report::Answer{$record[$D{$field}]};
  2116.       }
  2117.       $rule_found=1;
  2118.       $MySQLaccess::Grant::Rules{'db'} = $record;
  2119.       last;
  2120.     }
  2121.   }
  2122.  
  2123.   # -------------------------------
  2124.   #  setting privileges to db-priv
  2125.   MySQLaccess::Debug::Print(2, "Rights after parsing db-table..:");
  2126.   if (! $rule_found ) {
  2127.     MySQLaccess::Debug::Print(2, "NO rule found in db-table => no access granted!!");
  2128.   }
  2129.  
  2130.   return (\@record,\%Access_db);
  2131. }
  2132.  
  2133. # ==========================================================
  2134. # sub Get_grant_from_host:
  2135. # ==========================================================
  2136. sub Get_grant_from_host {
  2137.   my ($host,$db,$aref) = @_;
  2138.  
  2139.   MySQLaccess::Debug::Print(1, "Get_grant_from_host()");
  2140.  
  2141.   my %Access_host = %{Default_Access_Rights()};
  2142.  
  2143.   # the host-table doesn't have to be processed if the host-field
  2144.   # in the db-table isn't empty
  2145.   if (!$MySQLaccess::Grant::process_host_table) {
  2146.     MySQLaccess::Debug::Print(2, ">> Host-table doesn't have to be processed!!");
  2147.     $MySQLaccess::Grant::Rules{'host'} = 'no_equiv_host';
  2148.     return ([],\%Access_host);
  2149.   }
  2150.  
  2151.   my $rule_found=0;
  2152.   my @record = ();
  2153.  
  2154.   foreach $record (@{$aref}) {
  2155.     $full_access=0;
  2156.     MySQLaccess::Debug::Print(2, "host: $record");
  2157.     @record=split(/\t/,$record);
  2158.  
  2159.     # check host and db
  2160.     # with possible wildcards in field
  2161.     # replace mysql-wildcards by reg-wildcards
  2162.     my $host_tpl = MySQLaccess::Wildcards::SQL2Reg($record[0]);
  2163.     my $db_tpl   = MySQLaccess::Wildcards::SQL2Reg($record[1]);
  2164.     MySQLaccess::Debug::Print(3, "=>host_tpl : $record[0] -> $host_tpl");
  2165.     MySQLaccess::Debug::Print(3, "=>db_tpl   : $record[1] -> $db_tpl");
  2166.  
  2167.     if ( ( MySQLaccess::Host::Is_localhost($host_tpl)
  2168.            or MySQLaccess::Wildcards::MatchTemplate($host_tpl,$host_name)
  2169.            or MySQLaccess::Wildcards::MatchTemplate($host_tpl,$host_ip) )
  2170.          and ( MySQLaccess::Wildcards::MatchTemplate($db_tpl,$db) ) ) {
  2171.  
  2172.       $MySQLaccess::Grant::Rules{'host'} = $record;
  2173.       $rule_found=1;
  2174.       foreach $field (keys(%H)) {
  2175.         $Access_host{$field} = $MySQLaccess::Report::Answer{$record[$H{$field}]};
  2176.       }
  2177.       last;
  2178.     }
  2179.   }
  2180.  
  2181.   # -------------------------------
  2182.   #  setting privileges to host-priv
  2183.   MySQLaccess::Debug::Print(2, "Rights after parsing host-table..:");
  2184.   if (! $rule_found ) {
  2185.      @record=();
  2186.      MySQLaccess::Debug::Print(2, "NO restrictions found in the host-table!!");
  2187.   }
  2188.  
  2189.   # --------------------------------
  2190.   # debugging access-rights in db 
  2191.  
  2192.   return (\@record,\%Access_host); #matching record in host-table
  2193. }
  2194.  
  2195.  
  2196.  
  2197. # ===========================================================
  2198. # sub Default_Access_Rights():
  2199. #  return (a reference to) a hash which holds all default
  2200. #  priviliges currently defined in the grant-tables.
  2201. # ===========================================================
  2202. sub Default_Access_Rights {
  2203.     my %right = ();
  2204.  
  2205.     MySQLaccess::Debug::Print(2, "Debug Default_Access_Rights():");
  2206.     # add entry for all fields in the HOST-table
  2207.     foreach $field (keys(%MySQLaccess::Grant::H)) {
  2208.     $right{$field}='0' unless (defined($right{$field}));
  2209.     }
  2210.     # add entry for all fields in the DB-table
  2211.     foreach $field (keys(%MySQLaccess::Grant::D)) {
  2212.     $right{$field}='0' unless (defined($right{$field}));
  2213.     }
  2214.     # add entry for all fields in the USER-table
  2215.     foreach $field (keys(%MySQLaccess::Grant::U)) {
  2216.     $right{$field}='0' unless (defined($right{$field}));
  2217.     }
  2218.     # --------------
  2219.     # debugging info
  2220.     foreach $field (keys(%right)) { MySQLaccess::Debug::Print(3, sprintf("> %15s : %1s",$field,$right{$field})); }
  2221.  
  2222.     return \%right;
  2223. }
  2224.  
  2225. # ======================================
  2226. # sub Make_Privlist
  2227. #  Make an ordered list of the privileges
  2228. #  that should be reported
  2229. # ======================================
  2230. sub Make_Privlist {
  2231.     # layout:
  2232.     #'select_priv',     'create_priv',
  2233.     #'insert_priv',     'drop_priv',
  2234.     #'update_priv',     'reload_priv',
  2235.     #'delete_priv',     'process_priv',
  2236.     #'file_priv',       'shutdown_priv');
  2237.     my $right;
  2238.     my @privlist=();
  2239.     foreach $right (@U) {
  2240.     if (! grep(/$right/,@privlist)) { push(@privlist,$right); }
  2241.     };
  2242.     foreach $right (@D) {
  2243.     if (! grep(/$right/,@privlist)) { push(@privlist,$right); }
  2244.     };
  2245.     foreach $right (@H) {
  2246.     if (! grep(/$right/,@privlist)) { push(@privlist,$right); }
  2247.     };
  2248. #       print "Privileges:\n";
  2249. #       foreach $field (@privlist) { print " > $field\n"; }
  2250.     return \@privlist;
  2251. }
  2252.  
  2253.  
  2254.  
  2255. ########################################################################
  2256. package MySQLaccess::Report;
  2257. use Exporter ();
  2258. @EXPORT = qw(&Print_Header());
  2259. BEGIN {
  2260.     $FORM = $ENV{'SCRIPT_NAME'};
  2261.     $DEBUG     = 0;
  2262.     $DEBUG     = $MySQLaccess::DEBUG unless ($DEBUG);
  2263.  
  2264.     # translation-table for poss. answers
  2265.     %Answer =  ('Y' =>  1 , 'N' =>  0
  2266.                , 1  => 'Y',  0  => 'N'
  2267.                ,'?' => '?', ''  => '?'
  2268.                );
  2269.     $headers   = 0;
  2270.     $separator = 0;
  2271.  
  2272. # ****************************
  2273. # Notes and warnings
  2274. %MESSAGES = ( 
  2275.   'insecure_user' 
  2276.    => "Everybody can access your DB as user `\$user' from host `\$host'\n"
  2277.      ."WITHOUT supplying a password.\n"
  2278.      ."Be very careful about it!!"
  2279.  ,'password_required' 
  2280.    => "A password is required for user `\$user' :-("
  2281.  ,'invalid_password'
  2282.    => "The password '\$password' for user `\$user' is invalid :-P"
  2283.  , 'valid_password'
  2284.    => "You supplied the right password for user `\$user' :-)"
  2285.  ,'public_database' 
  2286.    => "Any user with the appropriate permissions has access to your DB!\n"
  2287.      ."Check your users!"
  2288.  ,'full_access' 
  2289.    => "All grant-tables are empty, which gives full access to ALL users !!"
  2290.  ,'no_rule_found'
  2291.    => "No matching rule"
  2292.  ,'no_equiv_host' 
  2293.    => "Not processed: host-field is not empty in db-table."
  2294.  ,'least_priv'
  2295.    => "If the final priveliges of the user are more then you gave the user,\n"
  2296.      ."check the priveliges in the db-table `\$db'."
  2297.  ,'minimum_priv'
  2298.    => "The privileges for any new user are AT LEAST\n"
  2299.      ."the ones shown in the table above,\n"
  2300.      ."since these are the privileges of the db `\$db'.\n"
  2301.  ,'not_found_mysql'
  2302.    => "The MySQL client program <$MySQLaccess::MYSQL> could not be found.\n"
  2303.      ."+ Check your path, or\n"
  2304.      ."+ edit the source of this script to point \$MYSQL to the mysql client.\n"
  2305.  ,'not_found_mysqldump'
  2306.    => "The MySQL dump program <$MySQLaccess::MYSQLDUMP> could not be found.\n"
  2307.      ."+ Check your path, or\n"
  2308.      ."+ edit the source of this script to point \$MYSQLDUMP to the mysqldump program.\n"
  2309.  ,'not_found_diff'
  2310.    => "The diff program <$MySQLaccess::DIFF> could not be found.\n"
  2311.      ."+ Check your path, or\n"
  2312.      ."+ edit the source of this script to point \$DIFF to the diff program.\n"
  2313.  ,'Unrecognized_option'
  2314.    => "Sorry,\n"
  2315.      ."You are using an old version of the mysql-program,\n"
  2316.      ."which does not yet implement a neccessary option.\n"
  2317.      ."\n"
  2318.      ."You need at least Version 6.2 of the mysql-client,\n"
  2319.      ."which was build in MySQL v3.0.18, to use this version\n"
  2320.      ."of `$MySQLaccess::script'."
  2321.  ,'Access_denied'
  2322.    => "Sorry,\n"
  2323.      ."An error occured when trying to connect to the database\n"
  2324.      ."with the grant-tables:\n"
  2325.      ."* Maybe YOU do not have READ-access to this database?\n"
  2326.      ."* If you used the -U option, you may have supplied an invalid username?\n"
  2327.      ."  for the superuser?\n"
  2328.      ."* If you used the -U option, it may be possible you have to supply\n"
  2329.      ."  a superuser-password to, with the -P option?\n"
  2330.      ."* If you used the -P option, you may have supplied an invalid password?\n"
  2331.  ,'Dbaccess_denied'
  2332.    => "Sorry,\n"
  2333.      ."An error occured when trying to connect to the database\n"
  2334.      ."with the grant-tables. (dbaccess denied)\n"
  2335.  ,'Unknown_tmp_table'
  2336.    => "Sorry,\n"
  2337.      ."An error occured when trying to work with the temporary tables in the database\n"
  2338.      ."with the grant-tables. (One of the temporary tables does not exist)\n"
  2339.  ,'Unknown_table'
  2340.    => "Sorry,\n"
  2341.      ."An error occured when trying to work with some tables in the database\n"
  2342.      ."with the grant-tables. (table does not exist)\n"
  2343.  ,'use_old_server'
  2344.    => "Sorry,\n"
  2345.      ."An error occured when executing an SQL statement.\n"
  2346.      ."You might consider altering the use of the parameter `--old_server' when \n"
  2347.      ."calling `$MySQLaccess::script'."
  2348.  ,'unknown_error'
  2349.    => "Sorry,\n"
  2350.      ."An error occured when trying to connect to the database\n"
  2351.      ."with the grant-tables. (unknown error)\n"
  2352.  ,'anonymous_access'
  2353.    => "Accessing the db as an anonymous user.\n"
  2354.      ."Your username has no relevance\n"
  2355.  ,'user_required'
  2356.    => "You have to supply a userid."
  2357.  ,'db_required'
  2358.    => "You have to supply the name of a database."
  2359.  ,'host_required'
  2360.    => "You have to supply the name of a host."
  2361.  );
  2362.  
  2363.  
  2364. # =====================================
  2365. # sub Print_Header:
  2366. #  print header info
  2367. # =====================================
  2368. sub Print_Header {
  2369.     if ($MySQLaccess::CMD) { #command-line mode
  2370.     print "$MySQLaccess::script Version $MySQLaccess::VERSION\n"
  2371.          ."By RUG-AIV, by Yves Carlier (Yves.Carlier\@rug.ac.be)\n"
  2372.          ."Changes by Steve Harvey (sgh\@vex.net)\n"
  2373.          ."This software comes with ABSOLUTELY NO WARRANTY.\n";
  2374.     }
  2375.     if ($MySQLaccess::CGI) { #CGI-BIN mode
  2376.     print "content-type: text/html\n\n" 
  2377.        . "<HTML>\n"
  2378.          ."<HEAD>\n"
  2379.          ."<TITLE>MySQLaccess</TITLE>\n"
  2380.          ."</HEAD>\n"
  2381.          ."<BODY>\n"
  2382.          ."<H1>$MySQLaccess::script Version $MySQLaccess::VERSION</H1>\n" 
  2383.          ."<CENTER>\n<ADDRESS>\n"
  2384.          ."By RUG-AIV, by Yves Carlier (<a href=mailto:Yves.Carlier\@rug.ac.be>Yves.Carlier\@rug.ac.be</a>)<BR>\n"
  2385.          ."Changes by Steve Harvey (<a href=mailto:sgh\@vex.net>sgh\@vex.net</a>)<BR>\n"
  2386.          ."This software comes with ABSOLUTELY NO WARRANTY.<BR>\n"
  2387.          ."</ADDRESS>\n</CENTER>\n"
  2388.          ."<HR>\n";
  2389.     Print_Taskbar();
  2390.     print "<HR>\n";
  2391.     }
  2392.     return 1;
  2393. }
  2394.  
  2395. # =====================================
  2396. # sub Print_Footer:
  2397. #  print footer info
  2398. # =====================================
  2399. sub Print_Footer {
  2400.     if ($MySQLaccess::CMD) { #command-line mode
  2401.     print "\n"
  2402.          ."BUGs can be reported by email to bugs\@mysql.com\n";
  2403.     }
  2404.     if ($MySQLaccess::CGI) { #CGI-BIN mode
  2405.     if ($MySQLaccess::Param{'brief'}) {
  2406.     print "</table>\n";  #close table in brief-output
  2407.     }
  2408.     print "<HR>\n"
  2409.          ."<ADDRESS>\n"
  2410.          ."BUGs can be reported by email to <a href=mailto:bugs\@mysql.com>bugs\@mysql.com</a><BR>\n"
  2411. #         ."Don't forget to mention the version $VERSION!<BR>\n"
  2412.          ."</ADDRESS>\n"
  2413.          ."</BODY>\n"
  2414.          ."</HTML>\n";
  2415.     }
  2416.     return 1;
  2417. }
  2418.  
  2419. # =====================================
  2420. # sub Print_Taskbar:
  2421. #  print taskbar on STDOUT
  2422. # =====================================
  2423. sub Print_Taskbar {
  2424.     print "<CENTER>\n"
  2425.          ."[<a href=$FORM?relnotes=on>Release Notes</a>] \n"
  2426.          ."[<a href=$FORM?version=on>Version</a>] \n"
  2427.          ."[<a href=$FORM?plan=on>Future Plans</a>] \n"
  2428.          ."[<a href=$FORM?howto=on>Examples</a>] \n"
  2429.          ."[<a href=$FORM?help=on>New check</a>] \n"
  2430.          ."[<a href=$FORM?edit=on>Change/edit ACL</a>] \n"
  2431.          ."</CENTER>\n";
  2432.     return 1;
  2433. }
  2434.  
  2435. # =====================================
  2436. # sub Print_Form:
  2437. #  print CGI-form
  2438. # =====================================
  2439. sub Print_Form {
  2440. print <<EOForm;
  2441. <center>
  2442. <!-- Quering -->
  2443. <FORM method=POST action=$FORM>
  2444.  
  2445. <table border width="100%" >
  2446. <tr>
  2447.   <th>MySQL server</th>
  2448.   <th>User information</th>
  2449.   <th>Reports</th>
  2450.   </tr>
  2451.  
  2452. <tr>
  2453.   <td valign=top>
  2454.   <table>
  2455.   <tr>
  2456.     <td halign=right><b>Host</b><br><font size=-2>(Host on which MySQL-server resides.)</font></td>
  2457.     <td valign=top><INPUT name=rhost type=text size=15 maxlength=15 value="$MySQLaccess::Param{'rhost'}"></td>
  2458.     </tr>
  2459.   <tr>
  2460.     <td halign=right><b>Superuser</b><br><font size=-2>(User which has <font color="Red">read-access</font> to grant-tables.)</font></td>
  2461.     <td valign=top><INPUT name=superuser type=text size=15 maxlength=15 value="$MySQLaccess::Param{'superuser'}"></td>
  2462.     </tr>
  2463.   <tr>
  2464.     <td halign=right><b>Password</b><br><font size=-2>(of Superuser.)</font></td>
  2465.     <td valign=top><INPUT name=spassword type=password size=15 maxlength=15 value="$MySQLaccess::Param{'spassword'}"></td>
  2466.     </tr>
  2467.   </table>
  2468.   </td>
  2469.  
  2470.   <td valign=top>
  2471.   <table>
  2472.   <tr>
  2473.     <td halign=right><b><font color=Red>User</font></b><br><font size=-2>(Userid used to connect to MySQL-database.)</font></td>
  2474.     <td halign=top><INPUT name=user type=text size=15 maxlength=15 value="$MySQLaccess::Param{'user'}"></td>
  2475.     </tr>
  2476.   <tr>
  2477.     <td halign=right><b>Password</b><br><font size=-2>(Password user has to give to get access to MySQL-database.)</font></td>
  2478.     <td valign=top><INPUT name=password type=password size=15 maxlength=15 value="$MySQLaccess::Param{'password'}"></td>
  2479.     </tr>
  2480.   <tr>
  2481.     <td halign=right><b><font color=Red>Database</font></b><br><font size=-2>(Name of MySQL-database user tries to connect to.</font><br><font size=-2>Wildcards <font color="Green">(*,?,%,_)</font> are allowed.)</font></td>
  2482.     <td valign=top><INPUT name=db type=text size=15 maxlength=15 value="$MySQLaccess::Param{'db'}"></td>
  2483.     </tr>
  2484.   <tr>
  2485.     <td halign=right><b>Host</b><br><font size=-2>(Host from where the user is trying to connect to MySQL-database.</font><br><font size=-2>Wildcards <font color="Green">(*,?,%,_)</font> are allowed.)</font></td>
  2486.     <td valign=top><INPUT name=host type=text size=15 maxlength=15 value="$MySQLaccess::Param{'host'}"></td>
  2487.     </tr>
  2488.   </table>
  2489.   </td>
  2490.  
  2491.   <td valign=center>
  2492.   <table cellspacing=5 cellpadding=2 cols=1 height="100%">
  2493.   <tr align=center>
  2494.     <td halign=right><INPUT type=submit name=brief value="Brief"><br>
  2495.                      <INPUT type=submit name=table value="Tabular"></td>
  2496.     </tr>
  2497.   <tr align=center>
  2498.     <td></td>
  2499.     </tr>
  2500.   <tr align=center>
  2501.     <td halign=right><INPUT type=reset value="Clear"></td>
  2502.     </tr>
  2503.   </table>
  2504.   </td>
  2505.   </tr>
  2506.  
  2507. </table>
  2508. </form>
  2509.  
  2510.  
  2511. </BODY>
  2512. </HTML>
  2513. EOForm
  2514.     return 1;
  2515. }
  2516.  
  2517. # =====================================
  2518. # sub Print_Usage:
  2519. #  print some information on STDOUT
  2520. # =====================================
  2521. sub Print_Usage {
  2522.     Print_Error_Messages();
  2523.     if ($MySQLaccess::CMD) { #command-line mode
  2524.         Print_Options();
  2525.     }
  2526.     if ($MySQLaccess::CGI) { #CGI-BIN mode
  2527.         Print_Form();
  2528.     }    
  2529.     return 1;
  2530. }
  2531.  
  2532. # ======================================
  2533. # sub Print_Version:
  2534. # ======================================
  2535. sub Print_Version {
  2536.     if ($MySQLaccess::CMD) {
  2537.        print $MySQLaccess::INFO;
  2538.     }
  2539.     if ($MySQLaccess::CGI) { 
  2540.        print "<PRE>\n"; 
  2541.        print $MySQLaccess::INFO;
  2542.        print "</PRE>\n"; 
  2543.     }
  2544.     return 1;
  2545. }
  2546.  
  2547. # ======================================
  2548. # sub Print_Relnotes:
  2549. # ======================================
  2550. sub Print_Relnotes {
  2551.     if ($MySQLaccess::CMD) {
  2552.        print $MySQLaccess::RELEASE;
  2553.     }
  2554.     if ($MySQLaccess::CGI) { 
  2555.        print "<PRE>\n";
  2556.        print $MySQLaccess::RELEASE;
  2557.        print "</PRE>\n"; 
  2558.     }
  2559.     return 1;
  2560. }
  2561.  
  2562. # ======================================
  2563. # sub Print_Plans:
  2564. # ======================================
  2565. sub Print_Plans {
  2566.     if ($MySQLaccess::CMD) {
  2567.        print $MySQLaccess::TODO;
  2568.     }
  2569.     if ($MySQLaccess::CGI) { 
  2570.        print "<PRE>\n";
  2571.        print $MySQLaccess::TODO;
  2572.        print "</PRE>\n"; 
  2573.     }
  2574.     return 1;
  2575. }
  2576.  
  2577. # ======================================
  2578. # sub Print_HowTo:
  2579. # ======================================
  2580. sub Print_HowTo {
  2581.     if ($MySQLaccess::CMD) {
  2582.        print $MySQLaccess::HOWTO;
  2583.     }
  2584.     if ($MySQLaccess::CGI) { 
  2585.        print "<PRE>\n"; 
  2586.        print $MySQLaccess::HOWTO;
  2587.        print "</PRE>\n"; 
  2588.     }
  2589.     return 1;
  2590. }
  2591.  
  2592. # ======================================
  2593. # sub Print_Options:
  2594. # ======================================
  2595. sub Print_Options {
  2596.     if ($MySQLaccess::CGI) { print "<PRE>\n"; }
  2597.     print $MySQLaccess::OPTIONS;
  2598.     if ($MySQLaccess::CGI) { print "</PRE>\n"; }
  2599.     return 1;
  2600. }
  2601.  
  2602. # ======================================
  2603. # sub Print_Error_Access:
  2604. # ======================================
  2605. sub Print_Error_Access {
  2606.     my ($error) = @_;
  2607.     print "\n";
  2608.     if ($MySQLaccess::CGI) { print "<font color=Red>\n<PRE>\n"; }
  2609.     print $MESSAGES{$error};
  2610.     if ($MySQLaccess::CGI) { print "</PRE>\n</font>\n"; }
  2611.     print "\n";
  2612.     return 1;
  2613. }
  2614.  
  2615. # ======================================
  2616. # sub Print_Error_Messages:
  2617. # ======================================
  2618. sub Print_Error_Messages {
  2619. #    my ($error) = @_;
  2620.     print "\n";
  2621.     if ($MySQLaccess::CGI) { print "<font color=Red>\n<center>\n"; }
  2622.     foreach $error (@MySQLaccess::Grant::Error) {
  2623.        print $MESSAGES{$error};
  2624.        print $MySQLaccess::CGI ? "<br>\n" : "\n";
  2625.     }
  2626.     if ($MySQLaccess::CGI) { print "</center>\n</font>\n"; }
  2627.     print "\n";
  2628.     return 1;
  2629. }
  2630.  
  2631. # ======================================
  2632. # sub Print_Message:
  2633. # ======================================
  2634. sub Print_Message {
  2635.     my ($aref) = @_;
  2636.     my @messages = @{$aref};
  2637.     print "\n";
  2638.     if ($MySQLaccess::CGI) { print "<font color=DarkGreen>\n<center>\n"; }
  2639.     foreach $msg (@messages) {
  2640.        print $msg;
  2641.        print $MySQLaccess::CGI ? "<br>\n" : "\n";
  2642.     }
  2643.     if ($MySQLaccess::CGI) { print "</center>\n</font>\n"; }
  2644.     print "\n";
  2645.     return 1;
  2646. }
  2647.  
  2648. # ======================================
  2649. # sub Print_Edit:
  2650. # ======================================
  2651. sub Print_Edit {
  2652.     print "\n";
  2653.     if (!$MySQLaccess::CGI) { 
  2654.        print "Note: Editing the temporary tables is NOT supported in CMD-line mode!\n";
  2655.        return 0;
  2656.     }
  2657.     print "<CENTER>\n"
  2658.          ."<form action=$FORM method=GET>\n"
  2659.          ."<table width=90% border>\n"
  2660.          ."<tr>\n"
  2661.          ." <td><input type=checkbox name=copy value=on> Copy grant-rules to temporary tables<br></td>\n"
  2662.          ." <td rowspan=5 align=center valign=center><input type=submit value=Go></td>\n"
  2663.          ."</tr>\n"
  2664.          ."<tr>\n"
  2665.          ." <td> Edit temporary tables with external application:<br>"
  2666.          ." <a href=\"$MySQLaccess::MYSQLADMIN\">$MySQLaccess::MYSQLADMIN</a></td>\n"
  2667.          ."</tr>\n"
  2668.          ."<tr>\n"
  2669.          ." <td><input type=checkbox name=preview value=on> Preview changes made in temporary tables</td>\n"
  2670.          ."</tr>\n"
  2671.          ."<tr>\n"
  2672.          ." <td><input type=checkbox name=commit value=on> Make changes permanent</td>\n"
  2673.          ."</tr>\n"
  2674.          ."<tr>\n"
  2675.          ." <td><input type=checkbox name=rollback value=on> Restore previous grand-rules</td>\n"
  2676.          ."</tr>\n"
  2677.          ."<tr>\n"
  2678.          ." <td colspan=2 align=center><font size=-2 color=Red>You need write,delete and drop-privileges to perform the above actions</font></td>\n"
  2679.          ."</tr>\n"
  2680.          ."</table>\n"
  2681.          ."</form>\n"
  2682.          ."</CENTER>\n";
  2683.  
  2684.     return 1;
  2685. }
  2686.  
  2687.  
  2688. # ======================================
  2689. # sub Print_Access_rights:
  2690. #  print the access-rights on STDOUT
  2691. # ======================================
  2692. sub Print_Access_rights {
  2693.     my ($host,$user,$db,$refhash) = @_;
  2694.  
  2695.     if (defined($MySQLaccess::Param{'brief'})) { 
  2696. #       if ($MySQLaccess::CGI) { print "<PRE>\n"; }
  2697.        Matrix_Report($host,$user,$db,$refhash);  
  2698. #       if ($MySQLaccess::CGI) { print "</PRE>\n"; }
  2699.     }
  2700.     else { 
  2701.        Tabular_Report($host,$user,$db,$refhash); 
  2702.        $MySQLaccess::Report::separator = $MySQLaccess::CGI ? "<hr>" : "-"x80;
  2703.     }
  2704.     return 1;
  2705. }
  2706.  
  2707. # ======================================
  2708. # sub Print_Diff_ACL:
  2709. #  print the diff. in the grants before and after
  2710. # ======================================
  2711. sub Print_Diff_ACL {
  2712.     my ($aref) = @_;
  2713.     my @diffs = @{$aref};
  2714.     my %block = ( '<' => 'Before',
  2715.                   '>' => 'After',
  2716.                 );
  2717.     my %color = ( '<' => 'Green',
  2718.                   '>' => 'Red',
  2719.                 ); 
  2720.     my $curblock = '';
  2721.  
  2722.     # -----------------------------
  2723.     # create column-headers
  2724.     foreach $field (@MySQLaccess::Grant::Privileges) {
  2725.       push(@headers,substr($field,0,4));
  2726.     }
  2727.  
  2728.     if ($MySQLaccess::CMD) {
  2729.     print "\n";
  2730.     print "Differences in access-rights BEFORE and AFTER changes in grant-tables\n";
  2731. #    print "---------------------------------------------------------------------\n";
  2732.       my $line1="";
  2733.       my $line2="";
  2734.       $line1 .= sprintf("| %-30s|",'Host,User,DB');
  2735.       $line2 .= sprintf("+-%-30s+",'-' x 30);
  2736.       foreach $header (@headers) {
  2737.         $line1 .= sprintf("%-4s|",$header);
  2738.         $line2 .= sprintf("%s+",'----');
  2739.       }
  2740.       print "$line2\n";
  2741.       print "$line1\n";
  2742.       print "$line2\n";
  2743.  
  2744.       $format = "format STDOUT = \n"
  2745.               . "^<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< " . " @|||" x 10 ."\n"
  2746.               . '$host_user_db,@priv' . "\n"
  2747.               . ".\n";
  2748. #print $format;
  2749.       eval $format;
  2750.     }
  2751.     if ($MySQLaccess::CGI) {
  2752.     print "<table border width=100%>\n";
  2753.     print "<tr>\n";
  2754.     print "<th colspan=11>";
  2755.     print "Differences in access-rights <font color=$color{'<'}>BEFORE</font> "
  2756.          ."and <font color=$color{'>'}>AFTER</font> changes to grant-tables</font>\n";
  2757.     print "</th>";
  2758.     print "</tr>\n";
  2759.     print "<tr>\n";    
  2760.     $line1 .= sprintf("<th>%-20s</th>",'Host, User, DB');
  2761.     foreach $header (@headers) {
  2762.       $line1 .= sprintf("<th>%-4s</th>",$header);
  2763.     }
  2764.     print "$line1</tr>\n";
  2765.     }
  2766.  
  2767.     foreach $line (@diffs) {
  2768.         $type = substr($line,0,1);
  2769.         $line = substr($line,1);
  2770.         ($host,$user,$db,@priv) = split(/,/,$line);
  2771.         if ($MySQLaccess::CMD) {
  2772.            if ($type ne $curblock) {
  2773.               $curblock = $type;
  2774.               print $block{$curblock},":\n";
  2775.            }
  2776.            #print "$line\n";
  2777.            write;
  2778.         }
  2779.         if ($MySQLaccess::CGI) {
  2780.            if ($type ne $curblock) {
  2781.               $curblock = $type;
  2782.               print "<tr><td><b>$block{$curblock}<b></td></tr>\n";
  2783.            }
  2784.            $line1="<td><font color=$color{$type}>$host, $user, $db</font></td>";
  2785.            foreach $field (@priv) {
  2786.               $line1 .= sprintf("<td align=center><font color=$color{$type}>%-4s</font></td>",$field);
  2787.            }
  2788.            print "<tr>$line1</tr>\n";
  2789.         }
  2790.     }
  2791.     print      "\n";
  2792.     if ($MySQLaccess::CMD) {
  2793.     print "---------------------------------------------------------------------\n";
  2794.     }
  2795.     if ($MySQLaccess::CGI) {
  2796.     print      "</table><br>";
  2797.     }
  2798.  
  2799.  
  2800.     return 1;
  2801. }
  2802.  
  2803. # ======================================
  2804. # sub Tabular_Report
  2805. #  Tabular report,
  2806. #  suitable for 1 triple (host,db,user)
  2807. # ======================================
  2808. sub Tabular_Report {
  2809.     my ($host,$user,$db,$a) = @_;
  2810.     my $column=2;
  2811.  
  2812.     # -----------------------------
  2813.     # separator
  2814.     if ($MySQLaccess::Report::separator) { print "$MySQLaccess::Report::separator\n"; }
  2815.     
  2816.     # -----------------------------
  2817.     # print table of access-rights
  2818.     my $rows = int(@MySQLaccess::Grant::Privileges/2);  #round up
  2819.     my @table=();
  2820.     $j=0;
  2821.     for $i (0 .. $rows-1) {
  2822.       $table[$j]=$MySQLaccess::Grant::Privileges[$i];
  2823.       $j = $j+2;
  2824.     }
  2825.     $j=1;
  2826.     for $i ($rows .. $#MySQLaccess::Grant::Privileges) {
  2827.       $table[$j]=$MySQLaccess::Grant::Privileges[$i];
  2828.       $j = $j+2;
  2829.     }
  2830.     if ($MySQLaccess::CMD) {
  2831.     print "\n";
  2832.     print "Access-rights\n";
  2833.     print "for USER '$user', from HOST '$host', to DB '$db'\n";
  2834.     }
  2835.     if ($MySQLaccess::CGI) {
  2836.     print "<table border width=100%>\n";
  2837.     print "<tr>\n";
  2838.     }
  2839.     if ($MySQLaccess::CGI) {
  2840.     print "<th colspan=5>";
  2841.     print "<font color=Red>Access-rights</font>\n";
  2842.     print "for USER '<font color=Green>$user</font>', from HOST '<font color=Green>$host</font>', to DB '<font color=Green>$db</font>'\n";
  2843.     print "</th>";
  2844.     print "</tr>\n";
  2845.     print "<tr>\n";
  2846.     }
  2847.     if ($MySQLaccess::CMD) {
  2848.     print      "\t+-----------------+---+\t+-----------------+---+";
  2849.     }
  2850.     foreach $field (@table) {
  2851.         if ($MySQLaccess::CMD) {
  2852.           if ($column==2) { print "\n\t"; $column=1;}
  2853.           else            { print "\t";   $column=2;}
  2854.           printf "| %-15s | %s |",$field,$Answer{$a->{$field}}; 
  2855.         }
  2856.         if ($MySQLaccess::CGI) {
  2857.           if ($column==2) { print "</tr>\n<tr>\n"; $column=1;}
  2858.           else            { print "<td width=10%></td>";   $column=2;}
  2859.           printf " <td width=35%><b>%-15s</b></td><td width=10%>%s</td>\n",$field,$Answer{$a->{$field}}; 
  2860.         }
  2861.     }
  2862.     print      "\n";
  2863.     if ($MySQLaccess::CMD) {
  2864.     print      "\t+-----------------+---+\t+-----------------+---+\n";
  2865.     }
  2866.     if ($MySQLaccess::CGI) {
  2867.     print      "</tr>\n</table><br>";
  2868.     }
  2869.  
  2870.     # ---------------
  2871.     # print notes:
  2872.     foreach $note (@MySQLaccess::Grant::Notes) {
  2873.       my $message = $MESSAGES{$note};
  2874.       $message =~ s/\$user/$user/g; 
  2875.       $message =~ s/\$db/$db/g;
  2876.       $message =~ s/\$host/$host/g;
  2877.       $message =~ s/\$password/$password/g;
  2878.       $PREFIX='NOTE';
  2879.       if ($MySQLaccess::CMD) {
  2880.       my @lines = split(/\n/,$message);
  2881.       foreach $line (@lines) { 
  2882.         print "$PREFIX:\t $line\n"; 
  2883.         $PREFIX='    ';
  2884.       }
  2885.       }
  2886.       if ($MySQLaccess::CGI) {
  2887.       print "<b>$PREFIX:</b> $message<br>\n";
  2888.       }
  2889.     } 
  2890.  
  2891.     # ---------------
  2892.     # print warnings:
  2893.     foreach $warning (@MySQLaccess::Grant::Warnings) {
  2894.       my $message = $MESSAGES{$warning};
  2895.       $message =~ s/\$user/$user/g;
  2896.       $message =~ s/\$db/$db/g;
  2897.       $message =~ s/\$host/$host/g;
  2898.       $message =~ s/\$password/$password/g;
  2899.       $PREFIX='BEWARE';
  2900.       if ($MySQLaccess::CMD) {
  2901.       my @lines = split(/\n/,$message);
  2902.       foreach $line (@lines) { 
  2903.         print "$PREFIX:\t $line\n"; 
  2904.         $PREFIX='      ';
  2905.       }
  2906.       }
  2907.       if ($MySQLaccess::CGI) {
  2908.       print "<b>$PREFIX:</b> $message<br>\n";
  2909.       }
  2910.     }
  2911.  
  2912.     # ---------------
  2913.     # print errors:
  2914.     foreach $error (@MySQLaccess::Grant::Errors) {
  2915.       my $message = $MESSAGES{$error};
  2916.       $message =~ s/\$user/$user/g;
  2917.       $message =~ s/\$db/$db/g;
  2918.       $message =~ s/\$host/$host/g;
  2919.       $message =~ s/\$password/$password/g;
  2920.       $PREFIX='ERROR';
  2921.       if ($MySQLaccess::CMD) {
  2922.       my @lines = split(/\n/,$message);
  2923.       foreach $line (@lines) { 
  2924.         print "$PREFIX:\t $line\n"; 
  2925.         $PREFIX='    ';
  2926.       }
  2927.       }
  2928.       if ($MySQLaccess::CGI) {
  2929.       print "<b>$PREFIX:</b> $message<br>\n";
  2930.       }
  2931.     }
  2932.  
  2933.     # ---------------
  2934.     # inform if there are no rules ==> full access for everyone.
  2935.     if ($MySQLaccess::Grant::full_access) { print "$MESSAGES{'full_access'}\n"; }
  2936.  
  2937.     # ---------------
  2938.     # print the rules used
  2939.     print "\n";
  2940.     if ($MySQLaccess::CMD) {
  2941.     print "The following rules are used:\n";
  2942.     foreach $field (sort(keys(%MySQLaccess::Grant::Rules))) {
  2943.       my $rule = (defined($MESSAGES{$MySQLaccess::Grant::Rules{$field}}) ? $MESSAGES{$MySQLaccess::Grant::Rules{$field}} : $MySQLaccess::Grant::Rules{$field});
  2944.       $rule =~ s/\t/','/g;
  2945.       printf " %-5s : '%s'\n",$field,$rule;
  2946.     }
  2947.     }
  2948.     if ($MySQLaccess::CGI) {
  2949.     print "<br>\n";
  2950.     print "<table border width=100%>\n";
  2951.     print "<tr><th colspan=2>The following rules are used:</th></tr>\n";
  2952.     foreach $field (sort(keys(%MySQLaccess::Grant::Rules))) {
  2953.       my $rule = (defined($MESSAGES{$MySQLaccess::Grant::Rules{$field}}) ? $MESSAGES{$MySQLaccess::Grant::Rules{$field}} : $MySQLaccess::Grant::Rules{$field});
  2954.       $rule =~ s/\t/','/g;
  2955.       printf "<tr><th>%-5s</th><td>'%s'</td></tr>\n",$field,$rule;
  2956.     }
  2957.     print "</table>\n";
  2958.     }
  2959.  
  2960.     return 1;
  2961. }
  2962.  
  2963. # ======================================
  2964. # sub Matrix_Report:
  2965. #  single-line output foreach triple,
  2966. #  no notes,warnings,...
  2967. # ======================================
  2968. sub Matrix_Report {
  2969.     my ($host,$user,$db,$a) = @_;
  2970.     my @headers = ();
  2971.     
  2972.     if (! $headers) {
  2973.        # -----------------------------
  2974.        # create column-headers
  2975.        foreach $field (@MySQLaccess::Grant::Privileges) {
  2976.          push(@headers,substr($field,0,4));
  2977.        }
  2978.     
  2979.        # -----------------------------
  2980.        # print column-headers
  2981.        print "\n";
  2982.        if ($MySQLaccess::CMD) {
  2983.          my $line1="";
  2984.          my $line2="";
  2985.          foreach $header (@headers) {
  2986.            $line1 .= sprintf("%-4s ",$header);
  2987.            $line2 .= sprintf("%s ",'----');
  2988.          }
  2989.          $line1 .= sprintf("| %-20s",'Host,User,DB');
  2990.          $line2 .= sprintf("+ %-20s",'-' x 20);
  2991.          print "$line1\n";
  2992.          print "$line2\n";
  2993.        }
  2994.        if ($MySQLaccess::CGI) {
  2995.          print "<table width=100% border>\n";
  2996.          my $line1="<tr>";
  2997.          foreach $header (@headers) {
  2998.            $line1 .= sprintf("<th>%-4s</th>",$header);
  2999.          }
  3000.          $line1 .= sprintf("<th>%-20s</th>",'Host, User, DB');
  3001.          print "$line1</tr>\n";
  3002.        }
  3003.  
  3004.        # ----------------------------
  3005.        # column-headers should only be 
  3006.        # printed once.
  3007.        $MySQLaccess::Report::headers=1;
  3008.     }
  3009.  
  3010.     # ------------------------
  3011.     # print access-information
  3012.     if ($MySQLaccess::CMD) {
  3013.       foreach $field (@MySQLaccess::Grant::Privileges) {
  3014.         printf " %-2s  ",$Answer{$a->{$field}}; 
  3015.       }
  3016.       printf "| %-20s",join(',',$host,$user,$db);
  3017.       print "\n";
  3018.     }
  3019.     if ($MySQLaccess::CGI) {
  3020.       print "<tr>";
  3021.       foreach $field (@MySQLaccess::Grant::Privileges) {
  3022.         printf "<td align=center>%-2s</td>",$Answer{$a->{$field}}; 
  3023.       }
  3024.       printf "<td><b>%-20s</b></td>",join(', ',$host,$user,$db);
  3025.       print "</tr>\n";
  3026.     }
  3027.  
  3028.     return 1;
  3029. }
  3030.  
  3031.  
  3032. # ======================================
  3033. # sub Raw_Report:
  3034. #  single-line output foreach triple,
  3035. #  no notes,warnings,...
  3036. # ======================================
  3037. sub Raw_Report {
  3038.     my ($host,$user,$db,$a) = @_;
  3039.     my @headers = ();
  3040.     my $string = "";
  3041.     
  3042.     # ------------------------
  3043.     # print access-information
  3044.     $string = "$host,$user,$db,";
  3045.     foreach $field (@MySQLaccess::Grant::Privileges) {
  3046.       $string .= $Answer{$a->{$field}} . ","; 
  3047.     }
  3048.     return $string;
  3049. }
  3050.  
  3051.  
  3052. #######################################################################
  3053. package MySQLaccess::Wildcards;
  3054. BEGIN {
  3055.     $DEBUG     = 0;
  3056.     $DEBUG     = $MySQLaccess::DEBUG unless ($DEBUG);
  3057. }
  3058. # ############################################
  3059. # SQL, WILDCARDS and REGULAR EXPRESSIONS 
  3060. # ============================================
  3061. # translage SQL-expressions to Reg-expressions
  3062. # ============================================
  3063. sub SQL2Reg {
  3064.     my ($expr) = @_;
  3065.     my $expr_o = $expr;
  3066.     $expr  =~ s/\./\\./g;
  3067.     $expr  =~ s/\\%/\002/g;
  3068.     $expr  =~ s/%/.*/g;
  3069.     $expr  =~ s/\002/%/g;
  3070.     $expr  =~ s/\\_/\002/g;
  3071.     $expr  =~ s/_/.+/g;
  3072.     $expr  =~ s/\002/_/g;
  3073.     MySQLaccess::Debug::Print(2,"$expr_o --> $expr");
  3074.     return $expr;
  3075. }
  3076.  
  3077. # translage WILDcards to Reg-expressions
  3078. # ============================================
  3079. sub Wild2Reg {
  3080.     my ($expr) = @_;
  3081.     my $expr_o = $expr;
  3082.     $expr  =~ s/\./\\./g;
  3083.     $expr  =~ s/\\\*/\002/g;
  3084.     $expr  =~ s/\*/.*/g;
  3085.     $expr  =~ s/\002/*/g;
  3086.     $expr  =~ s/\\\?/\002/g;
  3087.     $expr  =~ s/\?/.+/g;
  3088.     $expr  =~ s/\002/?/g;
  3089.     MySQLaccess::Debug::Print(2,"$expr_o --> $expr");
  3090.     return $expr;
  3091. }
  3092.  
  3093. # =============================================
  3094. # match a given string with a template
  3095. # =============================================
  3096. sub MatchTemplate {
  3097.     my ($tpl,$string) = @_;
  3098.     my $match=0;
  3099.     if ($string=~ /^$tpl$/ or $tpl eq '') { $match=1; }
  3100.     else                                  { $match=0;}
  3101.     MySQLaccess::Debug::Print(2,"($tpl,$string) --> $match");
  3102.     return $match;
  3103. }
  3104.  
  3105. #######################################################################
  3106. package MySQLaccess::Host;
  3107. BEGIN {
  3108.     $localhost = undef;
  3109.     $DEBUG     = 2;
  3110.     $DEBUG     = $MySQLaccess::DEBUG unless ($DEBUG);
  3111. }
  3112. # ======================================
  3113. # sub IP2Name
  3114. #  return the Name with the corr. IP-nmbr
  3115. #  (no aliases yet!!)
  3116. # ======================================
  3117. sub IP2Name {
  3118.     my ($ip) = @_;
  3119.     my $ip_o = $ip;
  3120.     if ($ip !~ /([0-9]+)\.([0-9]+)\.([0-9]+)\.([0-9]+)/o) {
  3121.        MySQLaccess::Debug::Print(3,"'$ip' is not an ip-number, returning IP=$ip");
  3122.        return $ip;
  3123.     }
  3124.     MySQLaccess::Debug::Print(4,"IP=$ip split up => $1.$2.$3.$4");
  3125.     $ip = pack "C4",$1,$2,$3,$4;
  3126.     MySQLaccess::Debug::Print(4,"IP packed -> >>$ip<<\n");
  3127.     my ($name,$aliases,$addrtype,$length,@addrs) = gethostbyaddr($ip, AF_INET);
  3128.     MySQLaccess::Debug::Print(3,"IP=$ip_o => hostname=$name");
  3129.     MySQLaccess::Debug::Print(4,"aliases=$aliases");
  3130.     MySQLaccess::Debug::Print(4,"addrtype=$addrtype - length=$length");
  3131.     return ($name || $ip);
  3132.     #return ($name || undef);
  3133. }
  3134.  
  3135. # ======================================
  3136. # sub Name2IP
  3137. #  return the IP-number of the host
  3138. # ======================================
  3139. sub Name2IP {
  3140.     my ($name) = @_;
  3141.     if ($name =~ /[%_]/) { 
  3142.        MySQLaccess::Debug::Print(3,"'$name' contains SQL-wildcards, returning name=$name");
  3143.        return $name; 
  3144.     }
  3145.     my ($_name,$aliases,$addrtype,$length,@addrs) = gethostbyname($name);
  3146.     my ($a,$b,$c,$d) = unpack('C4',$addrs[0]);
  3147.     my $ip = "$a.$b.$c.$d";
  3148.     MySQLaccess::Debug::Print(3,"hostname=$name => IP=$ip");
  3149.     MySQLaccess::Debug::Print(4,"aliases=$aliases");
  3150.     MySQLaccess::Debug::Print(4,"addrtype=$addrtype - length=$length");
  3151.     #if ($ip ne "") { return "$ip"; }
  3152.     #else           { return undef; }
  3153.     return ($ip || $name);
  3154. }
  3155.  
  3156. # ========================================
  3157. # sub LocalHost
  3158. #  some special action has to be taken for
  3159. #  the localhost
  3160. # ========================================
  3161. sub LocalHost {
  3162.     if (!defined($MySQLaccess::Host::localhost)) {
  3163.        $MySQLaccess::Host::localhost = Sys::Hostname::hostname();
  3164.        MySQLaccess::Debug::Print(3,"Setting package variable \$localhost=$MySQLaccess::Host::localhost");
  3165.     }
  3166.     my $host = $localhost;
  3167.     MySQLaccess::Debug::Print(3,"localhost = $host");
  3168.     return $host;
  3169. }
  3170.  
  3171. # ========================================
  3172. # check if the given hostname (or ip)
  3173. # corresponds with the localhost
  3174. # ========================================
  3175. sub Is_localhost {
  3176.     my ($host_tpl) = @_;
  3177.     my $isit = 0;
  3178.     if (($MySQLaccess::host_name eq $localhost) or ($MySQLaccess::host_ip eq $local_ip)) {
  3179.     MySQLaccess::Debug::Print(2,"Checking for localhost");
  3180.       MySQLaccess::Debug::Print(3,"because ($MySQLaccess::host_name EQ $localhost) AND ($MySQLaccess::host_ip EQ $local_ip)");
  3181.       $isit = ( 'localhost' =~ /$host_tpl/ ) ? 1 : 0;
  3182.       MySQLaccess::Debug::Print(3," 'localhost' =?= $host_tpl  -> $isit");
  3183.       return $isit;
  3184.     }
  3185.     else {
  3186.       MySQLaccess::Debug::Print(4,"Not checking for localhost");
  3187.       MySQLaccess::Debug::Print(4,"because ($MySQLaccess::host_name != $localhost) AND ($MySQLaccess::host_ip != $local_ip)");
  3188.       return 0;
  3189.     }
  3190. }
  3191.  
  3192.  
  3193. # =========================================
  3194. # check if host (IP or name) can be matched
  3195. # on the template.
  3196. # =========================================
  3197. sub MatchTemplate {
  3198.     my ($host,$tpl) = @_;
  3199.     my $match = 0;
  3200.    
  3201.     MySQLaccess::Debug::Print(1, "($host) =?= ($tpl)");
  3202.  
  3203.     my $host_name = IP2Name($host);
  3204.     my $host_ip   = Name2IP($host);
  3205.  
  3206.     MySQLaccess::Debug::Print(2, "name=$host_name ; ip=$host_ip");
  3207.     $match = (MySQLaccess::Wildcards::MatchTemplate($tpl,$host_name) or
  3208.              MySQLaccess::Wildcards::MatchTemplate($tpl,$host_ip));
  3209.  
  3210.     MySQLaccess::Debug::Print(2, "($host_name,$host_ip) =?= ($tpl): $ncount");
  3211.  
  3212.     return $match;
  3213. }
  3214.  
  3215. ########################################################################
  3216. package MySQLaccess::Debug;
  3217. BEGIN {
  3218.    my $dbg_file = "$MySQLaccess::script_log";
  3219.    open(DEBUG,"> $dbg_file") or warn "Could not open outputfile $dbg_file for debugging-info\n";
  3220.    select DEBUG;
  3221.    $| = 1;
  3222.    select STDOUT;
  3223. }
  3224. # =========================================
  3225. # Print debugging information on STDERR
  3226. # =========================================
  3227. sub Print {
  3228.     my ($level,$mesg) = @_;
  3229.     my ($pack,$file,$line,$subname,$hasargs,$wantarray) = caller(1);
  3230.     my ($PACK)  = split('::',$subname); 
  3231.     my $DEBUG = ${$PACK."::DEBUG"} ? ${$PACK."::DEBUG"} : $MySQLaccess::DEBUG ;
  3232.     my ($sec,$min,$hour) = localtime();
  3233.     print DEBUG "[$hour:$min:$sec $subname] $mesg\n" if ($DEBUG>=$level);
  3234. }
  3235.  
  3236.